/* RESET */
html,
body {
    overflow-x: hidden;
    max-width: 100%;
}

html {
    margin-top: 0 !important;
}

body {
    margin: 0 !important;
    font-family: "Noto Sans", sans-serif;
    font-optical-sizing: auto;
    font-style: normal;
    font-variation-settings:
        "wdth" 100;
    background: #0b0f14;
    color: #fff;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;

}

.ia-search-bar *,
.ia-search-bar *:before,
.ia-search-bar *:after {
    box-sizing: border-box;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: "Google Sans Flex", sans-serif;
    font-optical-sizing: auto;
    font-style: normal;
    font-weight: 400;
    font-variation-settings:
        "slnt" 0,
        "wdth" 100,
        "GRAD" 0,
        "ROND" 0;
}

/* =========================================
   ABOUT PAGE
========================================= */

.ia-about-hero {
    position: relative;
    padding: 120px 0 50px;
    overflow: hidden;
    background: #020b12;
}

.ia-about-bg {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at top left,
            rgba(31, 155, 120, 0.25),
            transparent 40%);
}

.ia-about-hero-content {
    position: relative;
    z-index: 5;
    max-width: 900px;
}

.ia-about-hero h1 {
    font-size: 82px;
    line-height: 1;
    color: #fff;
    margin: 24px 0;
    font-weight: 300;
}

.ia-about-hero p {
    font-size: 22px;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.72);
}

/* CONTENT */

.ia-about-content {
    /* padding: 100px 0; */
    padding: 5px 0 100px 0;
    background: #020b12;
}

.ia-about-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 340px;
    gap: 80px;
}

.ia-about-main {
    color: rgba(255, 255, 255, 0.82);
    font-size: 19px;
    line-height: 2;
}

.ia-about-main h2,
.ia-about-main h3 {
    color: #fff;
    margin-top: 50px;
    margin-bottom: 20px;
}

.ia-about-side {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.ia-about-stat {
    padding: 40px;
    border-radius: 10px;
    background:
        linear-gradient(145deg,
            rgba(15, 26, 36, 0.95),
            rgba(7, 15, 22, 0.98));

    border: 1px solid rgba(255, 255, 255, 0.06);
}

.ia-about-stat h3 {
    font-size: 48px;
    color: #42d6a4;
    margin: 12px;
}

.ia-about-stat span {
    color: rgba(255, 255, 255, 0.7);
}

/* TEAM */

.ia-team-section {
    padding: 30px 0 120px 0;
    background: #020b12;
}

.ia-section-head {
    margin-bottom: 60px;
}

.ia-section-head h2 {
    font-size: 56px;
    color: #fff;
    margin-top: 16px;
}

.ia-team-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.ia-team-card {
    overflow: hidden;
    border-radius: 28px;
    background:
        linear-gradient(145deg,
            rgba(15, 26, 36, 0.95),
            rgba(7, 15, 22, 0.98));

    border: 1px solid rgba(255, 255, 255, 0.06);

    transition: .35s;
}

.ia-team-card:hover {
    transform: translateY(-8px);
}

.ia-team-card a {
    text-decoration: none;
}

.ia-team-image {
    height: 360px;
    background-size: cover;
    background-position: center;
}

.ia-team-content {
    padding: 28px;
}

.ia-team-content h3 {
    color: #fff;
    font-size: 26px;
    margin-bottom: 12px;
}

.ia-team-content span {
    color: rgba(255, 255, 255, 0.65);
}

/* MOBILE */

@media (max-width: 1100px) {

    .ia-team-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .ia-about-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {

    .ia-about-hero h1 {
        font-size: 52px;
    }

    .ia-about-hero p {
        font-size: 18px;
    }

    .ia-team-grid {
        grid-template-columns: 1fr;
    }

    .ia-section-head h2 {
        font-size: 42px;
    }
}

/* =========================================
   MENU
========================================= */

.ia-menu-list {
    display: flex;
    align-items: center;
    gap: 20px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.ia-menu-list li {
    position: relative;
}

.ia-menu-list a {
    color: #fff;
    text-decoration: none;
    font-size: 15px;
    letter-spacing: 1px;
    transition: .3s;
}

.ia-menu-list a:hover,
.ia-menu-list .current-menu-item>a {
    color: #42d6a4;
    border-bottom: 2px solid #42d6a4;
}

/* =========================================
   DROPDOWN
========================================= */

.ia-menu-list .sub-menu {
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 240px;
    background: rgba(10, 15, 22, 0.98);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 20px;
    padding: 16px 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: .3s;
    list-style: none;
    z-index: 99;
}

.ia-menu-list li:hover>.sub-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.ia-menu-list .sub-menu li {
    width: 100%;
}

.ia-menu-list .sub-menu a {
    display: block;
    padding: 12px 24px;
    text-transform: none;
    letter-spacing: 0;
    font-size: 15px;
}

/* =========================================
   MOBILE MENU
========================================= */

.ia-mobile-menu {
    list-style: none;
    margin: 0;
    padding: 0;
}

/* .ia-mobile-menu li {
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}
 */
.ia-mobile-menu a {
    display: block;
    padding: 18px 0;
    color: #fff;
    text-decoration: none;
    font-size: 18px;
}

.ia-mobile-menu .sub-menu {
    padding-left: 18px;
    padding-bottom: 12px;
}

.ia-mobile-menu .sub-menu a {
    font-size: 15px;
    opacity: .7;
}

/* CONTAINER (Bootstrap style) */
.ia-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    /* consistent gutter */
}

/* HEADER */
/* .ia-header {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 20;
} */
.ia-header {
    position: absolute;
    top: 0;
    left: 0;

    width: 100%;

    z-index: 9999;

    transition:
        background .35s ease,
        padding .35s ease,
        backdrop-filter .35s ease;
}

@media (min-width: 992px) {

    .ia-header {
        position: fixed;

        background: transparent;

        padding: 8px 0;
    }

    /* SCROLLED STATE */

    .ia-header.scrolled {

        background: rgba(0, 0, 0, 0.92);

        backdrop-filter: blur(10px);

        box-shadow:
            0 8px 30px rgba(0, 0, 0, 0.35);

        padding: 12px 0;
    }
}

/* MOBILE */

@media (max-width: 991px) {

    .ia-header {
        position: absolute;
        background: transparent;
    }
}

/* NAV INSIDE CONTAINER */
.ia-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 0 !important;
    /* IMPORTANT: no side padding */
}

/* LOGO LEFT */
.ia-logo a {
    font-size: 28px;
    font-weight: 700;
    color: #fff;
    text-decoration: none;
    letter-spacing: 2px;
}

/* MENU RIGHT */
.ia-menu {
    display: flex;
    gap: 30px;
}

/* LINKS */
.ia-menu a {
    color: rgba(255, 255, 255, 0.85);
    text-decoration: none;
    font-size: 15px;
    position: relative;
}

/* ACTIVE UNDERLINE */
.ia-menu a.active::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -6px;
    width: 100%;
    height: 2px;
    background: #1f6f5c;
}

.ia-menu a:hover::after,
.ia-menu a.active::after {
    width: 100%;
}

/* BURGER */
/* BURGER */
.ia-burger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
}

.ia-burger span {
    width: 24px;
    height: 2px;
    background: #fff;
}

/* SIDENAV */
.ia-sidenav {
    position: fixed;
    top: 0;
    left: -340px;
    width: 250px;
    height: 100%;
    background: #111;
    z-index: 999;
    transition: 0.3s;
    padding: 5.5rem 2rem;
}

.ia-acc-btn {
    width: 100%;
    text-align: left;
    background: none;
    color: #f1f1f1;
    border: none;
    padding: 16px 0;
    font-weight: 600;
    cursor: pointer;
}

#ia-close {
    color: #f1f1f1;
    background: none;
    border: none;
}

.ia-acc-content {
    display: none;
}

.ia-acc-content.active {
    display: block;
}

.ia-acc-content a {
    display: block;
    padding: 8px 0;
    color: #333;
    text-decoration: none;
}

/* ACTIVE */
.ia-sidenav.active {
    left: 0;
}

/* HEADER */
.ia-sidenav-header {
    display: flex;
    justify-content: space-between;
    margin-bottom: 20px;
}

/* MENU */
.ia-sidenav-menu a {
    display: block;
    padding: 12px 0;
    color: #fff;
    text-decoration: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

/* OVERLAY */
.ia-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.6);
    opacity: 0;
    visibility: hidden;
    transition: 0.3s;
    z-index: 998;
}

.ia-overlay.active {
    opacity: 1;
    visibility: visible;
}

/* MOBILE */
@media (max-width: 768px) {
    .ia-nav {
        padding: 24px !important;
    }

    .ia-menu {
        display: none;
    }

    .ia-burger {
        display: flex;
    }

    .ia-sidenav-menu a {
        border-bottom: 0 !important;
    }

}

/* CONTAINER */
.ia-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

.ia-top-gallery {
    margin-top: 80px;
    /* space under header */
    margin-bottom: 40px;
}

.ia-top-slider {
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 9;
    overflow: hidden;
}

.ia-top-slide {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    transition: opacity 0.8s ease;
}


/* =========================================
   SERVICES + INSIGHTS
========================================= */

.ia-section-wrap {
    padding: 120px 0;
    background: #020b12;
}

.ia-services-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 460px;
    gap: 60px;
    align-items: start;
}

/* LEFT */

.ia-service-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.ia-card {
    padding: 38px;
    border-radius: 30px;

    background:
        linear-gradient(145deg,
            rgba(15, 26, 36, 0.95),
            rgba(7, 15, 22, 0.98));

    border: 1px solid rgba(255, 255, 255, 0.06);

    transition: .35s;
}

.ia-card:hover {
    transform: translateY(-6px);
    border-color: rgba(66, 214, 164, 0.22);
}

.ia-icon {
    width: 74px;
    height: 74px;
    margin-bottom: 28px;
    display: inline-block;
}

.ia-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.ia-card h3 {
    font-size: 28px;
    color: #222;
    margin-bottom: 18px;
}

.ia-card p {
    color: #222;
    line-height: 1.9;
}

/* RIGHT */

.ia-insight-feature {
    overflow: hidden;
    border-radius: 10px;

    background:
        linear-gradient(145deg,
            rgba(15, 26, 36, 0.95),
            rgba(7, 15, 22, 0.98));

    border: 1px solid rgba(255, 255, 255, 0.06);
}

.ia-insight-thumb {
    position: relative;
    height: 320px;
    display: block;
    background-size: cover;
    background-position: center;
}

.ia-insight-overlay {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(to top,
            rgba(2, 11, 18, 0.85),
            rgba(2, 11, 18, 0.2));
}

.ia-insight-category {
    position: absolute;
    top: 24px;
    left: 24px;
    z-index: 5;

    padding: 10px 16px;
    border-radius: 999px;

    background: rgba(0, 0, 0, 0.45);
    backdrop-filter: blur(12px);

    color: #fff;
    font-size: 13px;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.ia-insight-content {
    padding: 34px;
}

.ia-insight-date {
    color: rgba(255, 255, 255, 0.45);
    font-size: 14px;
    margin-bottom: 18px;
}

.ia-insight-content h3 {
    font-size: 34px;
    line-height: 1.25;
    margin-bottom: 20px;
}

.ia-insight-content h3 a {
    color: #fff;
    text-decoration: none;
}

.ia-insight-content p {
    color: rgba(255, 255, 255, 0.72);
    line-height: 1.9;
    margin-bottom: 30px;
}

/* MOBILE */

@media (max-width: 1100px) {

    .ia-services-layout {
        grid-template-columns: 1fr;
    }

    .ia-service-grid {
        grid-template-columns: 1fr;
    }
}

/* ================= HERO ================= */

.ia-home-hero {
    position: relative;
    height: 92vh;
    display: flex;
    align-items: center;
    overflow: hidden;
}

/* BACKGROUND */
/* .ia-hero-bg {
    position: absolute;
    inset: 0;
    background: url('/wp-content/uploads/2026/04/home.jpg') center/cover no-repeat;
    transform: scale(1.05);
    z-index: 0;
} */

.ia-hero-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    transform: scale(1.05);
    z-index: 0;
}

/* OVERLAY (ONLY ONE DEFINITION NOW) */
.ia-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom,
            rgba(0, 0, 0, 0.35),
            rgba(0, 0, 0, 0.65));
    z-index: 1;
    pointer-events: none;
}

/* INNER CONTENT */
.ia-hero-inner {
    position: relative;
    z-index: 2;
}

/* TEXT */
.ia-hero-text {
    max-width: 900px;
    margin-top: 130px;
    margin-bottom: 80px;
}

.ia-hero-text h1 {
    font-size: 64px;
    line-height: 1.05;
    letter-spacing: -1px;
    max-width: 900px;
    text-align: center;
}

.ia-hero-text p {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
    text-align: center;
}

/* ===========================
   WHY VENNARD
=========================== */

.ia-why-section {
    background: #0b0f14;
    padding: 120px 0;
}

.ia-why-grid {
    display: grid;
    grid-template-columns: 1.6fr 0.9fr;
    gap: 80px;
    align-items: start;
}

/* ===========================
   LEFT SIDE
=========================== */

.ia-why-left {
    border-top: 1px solid rgba(255, 255, 255, .08);
}

.ia-why-item {
    display: grid;
    grid-template-columns: 60px 1fr;
    gap: 50px;

    padding: 50px 0;

    border-bottom: 1px solid rgba(255, 255, 255, .08);
}

.ia-why-number {
    color: #1f9b78;

    font-size: 13px;
    font-weight: 600;

    letter-spacing: 2px;
}

.ia-why-content h3 {
    margin: 0 0 20px;

    color: #fff;

    font-size: 42px;
    font-weight: 700;

    line-height: 1;
    text-transform: uppercase;
}

.ia-why-content p {
    margin: 0;

    max-width: 750px;

    color: rgba(255, 255, 255, .65);

    font-size: 18px;
    line-height: 1.9;
}

/* ===========================
   RIGHT SIDE
=========================== */

.ia-why-right {
    position: sticky;
    top: 120px;
}

/* PHILOSOPHY */

.ia-philosophy-card {

    border-left: 3px solid #c8a46b;
    border: 1px solid rgba(255, 255, 255, .05);

    padding: 40px;

    margin-bottom: 24px;
}

.ia-philosophy-card h3 {
    margin: 0 0 20px;

    color: #fff;

    font-size: 30px;
    line-height: 1.3;

    text-transform: uppercase;
}

.ia-philosophy-content {
    color: rgba(255, 255, 255, .65);

    font-size: 16px;
    line-height: 2;
}

/* APPROACH */

.ia-approach-card {
    border: 1px solid rgba(255, 255, 255, .05);

    padding: 40px;
}

.ia-approach-label {
    display: block;

    margin-bottom: 25px;

    color: #1f9b78;

    font-size: 12px;
    font-weight: 600;

    letter-spacing: 3px;
    text-transform: uppercase;
}

.ia-approach-card ul {
    list-style: none;

    margin: 0;
    padding: 0;
}

.ia-approach-card li {
    position: relative;

    padding: 14px 0 14px 25px;

    color: rgba(255, 255, 255, .75);

    border-bottom: 1px solid rgba(255, 255, 255, .05);
}

.ia-approach-card li:last-child {
    border-bottom: none;
}

.ia-approach-card li:before {
    content: "\2014";

    position: absolute;
    left: 0;

    color: #1f9b78;
    font-weight: 700;
}

/* ===========================
   TABLET
=========================== */

@media (max-width: 1024px) {

    .ia-why-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .ia-why-right {
        position: static;
    }

    .ia-why-content h3 {
        font-size: 34px;
    }

}

/* ===========================
   MOBILE
=========================== */

@media (max-width: 768px) {

    .ia-why-section {
        padding: 80px 0;
    }

    .ia-why-item {
        grid-template-columns: 1fr;
        gap: 15px;

        padding: 35px 0;
    }

    .ia-why-number {
        margin-bottom: 5px;
    }

    .ia-why-content h3 {
        font-size: 26px;
        margin-bottom: 12px;
    }

    .ia-why-content p {
        font-size: 16px;
        line-height: 1.8;
    }

    .ia-philosophy-card,
    .ia-approach-card {
        padding: 30px;
    }

    .ia-philosophy-card h3 {
        font-size: 22px;
    }

}

.ia-why-head {
    max-width: 900px;
    margin-bottom: 80px;
}

.ia-why-head .ia-kicker {
    margin-bottom: 15px;
}

.ia-why-head h2 {
    color: #fff;
    font-size: clamp(48px, 6vw, 72px);
    line-height: .95;
    text-transform: uppercase;
    margin: 0;
}

/* =========================================
   SEARCH BAR
========================================= */

.ia-search-bar {
    display: flex;
    align-items: stretch;

    background: #fff;

    overflow: hidden;

    max-width: 980px;
    width: 100%;

    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.35);
}

/* ITEMS */

.ia-search-item {
    flex: 1;

    border-right: 1px solid #ececec;

    min-width: 0;
}

.ia-search-item:last-child {
    border-right: 0;
}

/* INPUTS */

.ia-search-item input,
.ia-search-item select {
    width: 100%;
    height: 55px;

    padding: 0 24px;

    border: 0;
    outline: none;

    background: #fff;

    font-size: 15px;
    font-weight: 500;

    color: #111;

    appearance: none;
    -webkit-appearance: none;
}

/* PLACEHOLDER */

.ia-search-item input::placeholder {
    color: #7b7b7b;
}

/* BUTTON */

.ia-search-btn {
    min-width: 190px;

    background: rgb(31, 111, 92);

    color: #fff;

    border: 0;

    padding: 0 40px;

    cursor: pointer;

    font-size: 15px;
    font-weight: 600;

    letter-spacing: 0.5px;

    transition: .3s;
}

.ia-search-btn:hover {
    background: rgb(25, 92, 76);
}

/* =========================================
   MOBILE VERSION
========================================= */

@media (max-width: 768px) {

    .ia-search-bar {

        display: flex;
        flex-direction: column;

        width: 100%;
        max-width: 100%;

        padding: 24px;

        gap: 18px;

        background: #f5f5f5;

        box-sizing: border-box;

        overflow: hidden;

        box-shadow:
            0 12px 40px rgba(0, 0, 0, 0.22);
    }

    .ia-search-item {
        width: 100%;
        border-right: 0;
    }

    .ia-search-item input,
    .ia-search-item select {

        width: 100%;
        max-width: 100%;

        height: 72px;

        padding: 0 22px;

        border: 1px solid #dedede;

        background: #fff;

        font-size: 16px;

        box-sizing: border-box;
    }

    .ia-search-btn {

        width: 100%;
        max-width: 100%;

        height: 72px;

        border: 0;

        box-sizing: border-box;

        font-size: 20px;
        font-weight: 600;
    }
}

/* ================= CONTENT ================= */

.ia-content-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 40px;
    padding: 60px 0;
}

.ia-address {
    color: rgba(255, 255, 255, 0.7);
    margin-top: 6px;
}

.ia-section {
    margin-bottom: 40px;
}

/* GLASS */
.glass {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    padding: 20px;
    border-radius: 10px;
}

/* GALLERY */
.ia-gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
}

.ia-gallery-grid img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

/* SERVICES */
/* .ia-services {
    padding: 60px;
    text-align: center;
}

.ia-service-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.ia-card {
    background: #111;
    padding: 20px;
    border-radius: 10px;
} */

.ia-card-content {
    position: absolute;
    bottom: 16px;
    left: 16px;
    right: 16px;
    z-index: 3;
    color: #fff;
}

.ia-card-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top,
            rgba(0, 0, 0, 0.85),
            rgba(0, 0, 0, 0.2));
    z-index: 2;
}

/* SECTION WRAP */
.ia-section-wrap {
    padding: 80px 0;
}

/* MAIN GRID */
.ia-services-layout {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 60px;
    align-items: start;
}

/* LEFT SIDE */
.ia-services-left h2,
.ia-services-right h2 {
    margin-bottom: 24px;
    font-size: 28px;
}

/* SERVICE GRID */
.ia-service-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

/* SERVICE CARD */
.ia-card {
    background: #f1f1f1;
    padding: 30px 20px;
    border-radius: 10px;
    text-align: center;
    transition: 0.3s;
    color: #222;
}

.ia-card:hover {
    transform: translateY(-5px);
}

/* ICON */
.ia-icon {
    font-size: 32px;
    margin-bottom: 15px;
}

.ia-icon img {
    max-width: 64px;
}

/* INSIGHT CARD */
.ia-insight-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    padding: 24px 24px 44px 24px;
    border-radius: 10px;
}

.ia-insight-card h3 {
    font-size: 18px;
    margin-bottom: 16px;
}

.ia-insight-card ul {
    padding-left: 18px;
    margin-bottom: 20px;
}

.ia-insight-card li {
    margin-bottom: 8px;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.8);
}

/* =========================
   LIST PAGE FIXED LAYOUT
========================= */

/* header */
.ia-list-header {
    margin-top: 100px;
    margin-bottom: 20px;
}

.ia-list-header h1 {
    font-size: 32px;
    margin-bottom: 5px;
}

.ia-list-header span {
    color: rgba(255, 255, 255, 0.6);
}

/* page */
.ia-page {
    padding: 80px 0 !important;
}

/* =========================
   FEATURED LISTINGS FIX
========================= */

.ia-listings {
    padding: 80px 0;
}

.ia-listings h2 {
    margin-bottom: 30px;
}

/* center button */
.ia-center {
    margin-top: 40px;
    text-align: center;
}

/* grid spacing */
.ia-featured-grid {
    margin-top: 20px;
}

/* ensure same card height */
.ia-featured-grid .ia-list-card {
    height: 100%;
}

/* smoother hover */
.ia-list-card {
    transition: all 0.3s ease;
}

/* =========================================
   FILTER BAR
========================================= */

.ia-filter-bar {

    display: grid;

    grid-template-columns:
        1.2fr 1fr 1fr 1fr 1fr 1fr;

    gap: 14px;

    padding: 24px;

    margin-bottom: 40px;

    border: 1px solid rgba(255, 255, 255, 0.08);

    background:
        linear-gradient(145deg,
            rgba(255, 255, 255, 0.03),
            rgba(255, 255, 255, 0.01));

    backdrop-filter: blur(10px);

    box-sizing: border-box;
}

/* INPUTS */

.ia-filter-bar input,
.ia-filter-bar select {

    width: 100%;

    height: 48px;

    padding: 0 18px;

    border: 0;

    border-radius: 5px;

    background: #fff;

    font-size: 15px;

    color: #111;

    outline: none;

    box-sizing: border-box;
}

/* PLACEHOLDER */

.ia-filter-bar input::placeholder {
    color: #777;
}

/* MOBILE */

@media (max-width: 992px) {

    .ia-filter-bar {

        grid-template-columns: 1fr 1fr;

        padding: 18px;
    }
}

@media (max-width: 768px) {

    .ia-filter-bar {

        grid-template-columns: 1fr;

        gap: 14px;
    }

    .ia-filter-bar input,
    .ia-filter-bar select {

        height: 45px;

        font-size: 16px;
    }
}

/* GRID */
.ia-listings-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

.ia-list-card {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    background: #111;
    transition: transform 0.3s ease;
}

/* IMAGE */
.ia-list-card-image {
    height: 280px;
    background-size: cover;
    background-position: center;
    position: relative;
    display: flex;
    align-items: flex-end;
    transition: transform 0.4s ease;
}

/* ZOOM ON HOVER */
.ia-list-card:hover .ia-list-card-image {
    transform: scale(1.05);
}

.ia-list-card:hover {
    transform: translateY(-6px);
}

/* OVERLAY */
.ia-list-card-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top,
            rgba(0, 0, 0, 0.9),
            rgba(0, 0, 0, 0.2));
}

/* BADGES */
.ia-list-badges {
    position: absolute;
    top: 12px;
    left: 12px;
    display: flex;
    gap: 8px;
    z-index: 3;
}

.ia-badge {
    padding: 4px 10px;
    font-size: 12px;
    border-radius: 6px;
    font-weight: 600;
}

.ia-badge.status {
    background: #27ae60;
}

.ia-badge.type {
    background: rgba(0, 0, 0, 0.6);
}

/* CONTENT */
.ia-list-card-content {
    position: relative;
    z-index: 2;
    padding: 16px;
}

.ia-list-card-content h3 {
    font-size: 18px;
    margin-bottom: 6px;
}

.ia-list-card-content p {
    font-size: 13px;
    opacity: 0.7;
}

/* PRICE */
.ia-list-price {
    margin-top: 8px;
    font-weight: bold;
    font-size: 16px;
}

/* LINK */
.ia-list-card-link {
    display: block;
    color: #fff;
    text-decoration: none;
}

/* ========================================
   INSIGHTS PAGE
======================================== */

.ia-insights-page {
    padding: 120px 0;
    background: #020b12;
    min-height: 100vh;
}

.ia-insights-hero {
    margin-bottom: 70px;
    max-width: 900px;
}

.ia-kicker {
    display: inline-block;
    padding: 10px 18px;
    border-radius: 999px;
    background: rgba(31, 155, 120, 0.12);
    border: 1px solid rgba(31, 155, 120, 0.25);
    color: #42d6a4;
    font-size: 13px;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 25px;
}

.ia-insights-hero h1 {
    font-size: 72px;
    line-height: 1;
    font-weight: 300;
    color: #fff;
    margin-bottom: 24px;
}

.ia-insights-hero p {
    font-size: 20px;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.72);
}

/* ========================================
   GRID
======================================== */

.ia-insights-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 36px;
}

/* ========================================
   CARD
======================================== */

.ia-insight-card {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    background: linear-gradient(145deg,
            rgba(15, 26, 36, 0.96),
            rgba(7, 15, 22, 0.98));
    border: 1px solid rgba(255, 255, 255, 0.06);
    transition: all .35s ease;
}

.ia-insight-card:hover {
    transform: translateY(-8px);
    border-color: rgba(66, 214, 164, 0.3);
    box-shadow:
        0 25px 70px rgba(0, 0, 0, 0.45),
        0 0 0 1px rgba(66, 214, 164, 0.08);
}

.ia-insight-link {
    display: block;
    text-decoration: none;
    color: inherit;
}

/* ========================================
   IMAGE
======================================== */

.ia-insight-image {
    position: relative;
    height: 320px;
    background-size: cover;
    background-position: center;
}

.ia-insight-overlay {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(to top,
            rgba(2, 11, 18, 0.92) 0%,
            rgba(2, 11, 18, 0.2) 55%,
            rgba(2, 11, 18, 0.05) 100%);
}

.ia-insight-meta {
    position: absolute;
    top: 24px;
    left: 24px;
    z-index: 5;
    padding: 10px 16px;
    border-radius: 999px;
    background: rgba(0, 0, 0, 0.45);
    backdrop-filter: blur(12px);
    color: #fff;
    font-size: 13px;
    letter-spacing: 1px;
}

/* ========================================
   CONTENT
======================================== */

.ia-insight-content {
    padding: 34px;
}

.ia-insight-content h3 {
    font-size: 34px;
    line-height: 1.25;
    font-weight: 400;
    color: #fff;
    margin-bottom: 22px;
}

.ia-insight-content p {
    font-size: 17px;
    line-height: 1.9;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 30px;
}

.ia-read-more {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: #42d6a4;
    font-size: 14px;
    letter-spacing: 2px;
    text-transform: uppercase;
    transition: all .3s ease;
}

.ia-insight-card:hover .ia-read-more {
    transform: translateX(6px);
}

/* ========================================
   PAGINATION
======================================== */

.ia-pagination {
    margin-top: 70px;
    display: flex;
    justify-content: center;
}

.ia-pagination .page-numbers {
    width: 50px;
    height: 50px;
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.06);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    text-decoration: none;
    margin: 0 6px;
    transition: all .3s ease;
}

.ia-pagination .page-numbers.current,
.ia-pagination .page-numbers:hover {
    background: #1f9b78;
    border-color: #1f9b78;
}

/* ========================================
   MOBILE
======================================== */

@media (max-width: 991px) {

    .ia-insights-grid {
        grid-template-columns: 1fr;
    }

    .ia-insights-hero h1 {
        font-size: 52px;
    }

    .ia-insight-image {
        height: 260px;
    }

    .ia-insight-content h3 {
        font-size: 28px;
    }
}

@media (max-width: 640px) {

    .ia-insights-page {
        padding: 80px 0;
    }

    .ia-insights-hero h1 {
        font-size: 42px;
    }

    .ia-insights-hero p {
        font-size: 17px;
    }

    .ia-insight-content {
        padding: 26px;
    }
}

/* =========================================
   SINGLE TEAM
========================================= */

.ia-agent-hero {
    position: relative;
    min-height: 50vh;
    display: flex;
    align-items: flex-end;
    overflow: hidden;
    background: #020b12;
}

.ia-agent-hero-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    transform: scale(1.05);
}

.ia-agent-overlay {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(to top,
            rgba(2, 11, 18, 0.98),
            rgba(2, 11, 18, 0.45));
}

.ia-agent-hero-content {
    position: relative;
    z-index: 5;
    padding: 30px 0 30px;
    max-width: 900px;
}

.ia-agent-hero h1 {
    font-size: 82px;
    line-height: 1;
    color: #fff;
    margin: 22px 0;
    font-weight: 300;
}

.ia-agent-position {
    font-size: 22px;
    color: rgba(255, 255, 255, 0.72);
}

/* =========================================
   CONTACT PAGE
========================================= */

.ia-contact-hero {
    position: relative;
    padding: 120px 0 40px;
    overflow: hidden;
    background: #020b12;
}

.ia-contact-bg {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at top left,
            rgba(31, 155, 120, 0.25),
            transparent 40%);
}

.ia-contact-hero-content {
    position: relative;
    z-index: 5;
    max-width: 900px;
}

.ia-contact-hero h1 {
    font-size: 82px;
    line-height: 1;
    font-weight: 300;
    color: #fff;
    margin: 24px 0;
}

.ia-contact-hero p {
    font-size: 22px;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.72);
}

/* LAYOUT */

.ia-contact-section {
    padding: 100px 0;
    background: #020b12;
}

.ia-contact-layout {
    display: grid;
    grid-template-columns: 380px minmax(0, 1fr);
    gap: 60px;
}

/* LEFT */

.ia-contact-info {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.ia-contact-card {
    padding: 36px;
    border-radius: 10px;

    background:
        linear-gradient(145deg,
            rgba(15, 26, 36, 0.95),
            rgba(7, 15, 22, 0.98));

    border: 1px solid rgba(255, 255, 255, 0.06);
}

.ia-contact-card h3 {
    color: #fff;
    font-size: 28px;
    margin: 18px 0;
}

.ia-contact-card p {
    color: rgba(255, 255, 255, 0.72);
    line-height: 1.9;
}

.ia-contact-links {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-top: 24px;
}

.ia-contact-links a {
    color: rgba(255, 255, 255, 0.78);
    text-decoration: none;
    transition: .3s;
}

.ia-contact-links a:hover {
    color: #42d6a4;
}

.ia-contact-services {
    margin-top: 24px;
    padding: 0;
    list-style: none;
}

.ia-contact-services li {
    padding: 14px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    color: rgba(255, 255, 255, 0.72);
}

/* FORM */

.ia-contact-form-card {
    padding: 50px;
    border-radius: 10px;

    background:
        linear-gradient(145deg,
            rgba(15, 26, 36, 0.95),
            rgba(7, 15, 22, 0.98));

    border: 1px solid rgba(255, 255, 255, 0.06);
}

.ia-contact-form-card h2 {
    color: #fff;
    font-size: 52px;
    margin: 18px 0 40px;
    font-weight: 300;
}

/* =========================================
   PROPERTY ENQUIRY
========================================= */

.ia-enquiry-card {
    margin-top: 28px;
}

.ia-enquiry-head {
    margin-bottom: 28px;
}

.ia-enquiry-head h3 {
    color: #fff;
    font-size: 30px;
    margin-top: 14px;
}

.ia-property-form .ia-field {
    margin-bottom: 16px;
}

.ia-property-form .wpcf7-form-control,
.ia-property-form textarea {
    width: 90% !important;

    padding: 16px 18px;

    border-radius: 10px;

    border: 1px solid rgba(255, 255, 255, 0.08);

    background: rgba(255, 255, 255, 0.03);

    color: #fff;

    font-size: 15px;

    outline: none;
}

.ia-property-form textarea {
    min-height: 140px;
    resize: vertical;
}

.ia-property-form input::placeholder,
.ia-property-form textarea::placeholder {
    color: rgba(255, 255, 255, 0.42);
}

.ia-property-form .wpcf7-submit {
    width: 100% !important;

    border: 0;

    padding: 18px 20px;

    border-radius: 10px;

    background: rgb(31, 111, 92);

    color: #fff;

    font-size: 13px;
    letter-spacing: 2px;
    text-transform: uppercase;

    cursor: pointer;

    transition: .3s;
}

.ia-property-form .wpcf7-submit:hover {
    background: rgb(25, 92, 76);
    transform: translateY(-2px);
}

/* CF7 */

.wpcf7-form label {
    display: block;
    color: rgba(255, 255, 255, 0.75);
    margin-bottom: 24px;
    font-size: 15px;
}

.ia-subscribe-form .ia-field:last-child {
    margin-bottom: 0;
}

.wpcf7 p {
    margin: 0;
}

/* =========================================
   CONTACT FORM
========================================= */

.ia-contact-form-card .wpcf7-form,
.ia-contact-form-card .wpcf7-form *,
.ia-contact-form-card .wpcf7-form *:before,
.ia-contact-form-card .wpcf7-form *:after {
    box-sizing: border-box;
}

/* REMOVE CF7 P SPACING */

.ia-contact-form-card p {
    margin: 0 0 18px;
}

/* INPUTS */

.ia-contact-form-card .wpcf7-form-control,
.ia-contact-form-card textarea {

    width: 100% !important;
    max-width: 100%;

    margin-top: 12px;

    padding: 16px 22px;

    border-radius: 14px;

    border: 1px solid rgba(255, 255, 255, 0.08);

    background: rgba(255, 255, 255, 0.03);

    color: #fff;

    font-size: 16px;

    outline: none;

    display: block;
}

/* TEXTAREA */

.ia-contact-form-card textarea {
    min-height: 180px;
    resize: vertical;
}

/* PLACEHOLDER */

.ia-contact-form-card input::placeholder,
.ia-contact-form-card textarea::placeholder {
    color: rgba(255, 255, 255, 0.45);
}

/* SUBMIT */

.ia-contact-form-card .wpcf7-submit {

    width: 100% !important;

    height: 58px;

    border: 0;

    border-radius: 999px;

    background: rgb(31, 111, 92) !important;

    color: #fff;

    cursor: pointer;

    font-size: 14px;
    letter-spacing: 2px;
    text-transform: uppercase;

    transition: .3s;

    display: block;
}

/* HOVER */

.ia-contact-form-card .wpcf7-submit:hover {
    background: rgb(25, 92, 76) !important;
    transform: translateY(-2px);
}

/* MOBILE */

@media (max-width: 768px) {

    .ia-contact-form-card .wpcf7-form-control,
    .ia-contact-form-card textarea {

        font-size: 16px;
    }
}

/* MAP */

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

/* MOBILE */

@media (max-width: 1100px) {

    .ia-contact-layout {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {

    .ia-contact-hero h1 {
        font-size: 52px;
    }

    .ia-contact-hero p {
        font-size: 18px;
    }

    .ia-contact-form-card {
        padding: 32px;
    }

    .ia-contact-form-card h2 {
        font-size: 38px;
    }
}

/* MAIN */

.ia-agent-single {
    background: #020b12;
    padding: 100px 0;
}

.ia-agent-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 420px;
    gap: 80px;
    align-items: start;
}

.ia-agent-image-wrap {
    margin-bottom: 50px;
}

.ia-agent-image {
    width: 100%;
    height: 450px;
    border-radius: 10px;
    background-size: cover;
    background-position: center;
    border: 1px solid #16a085;
}

.ia-agent-bio {
    font-size: 19px;
    line-height: 2;
    color: rgba(255, 255, 255, 0.82);
}

.ia-agent-bio h2,
.ia-agent-bio h3 {
    color: #fff;
    margin-top: 50px;
    margin-bottom: 20px;
}

.ia-agent-bio p {
    margin-bottom: 30px;
}

/* SIDEBAR */

.ia-agent-sidebar {
    position: sticky;
    top: 120px;
    height: fit-content;
}

.ia-agent-card {
    padding: 36px;
    border-radius: 30px;

    background:
        linear-gradient(145deg,
            rgba(15, 26, 36, 0.95),
            rgba(7, 15, 22, 0.98));

    border: 1px solid rgba(255, 255, 255, 0.06);

    margin-bottom: 28px;
}

.ia-agent-card h3 {
    color: #fff;
    margin-bottom: 24px;
    font-size: 24px;
}

.ia-agent-contact {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.ia-agent-contact a {
    color: rgba(255, 255, 255, 0.72);
    text-decoration: none;
    transition: .3s;
}

.ia-agent-contact a:hover {
    color: #42d6a4;
}

.ia-agent-specialties {
    list-style: none;
    padding: 0;
    margin: 0;
}

.ia-agent-specialties li {
    padding: 14px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    color: rgba(255, 255, 255, 0.75);
}

/* RELATED */

.ia-related-team {
    padding: 0 0 120px;
    background: #020b12;
}

/* MOBILE */

@media (max-width: 1100px) {

    .ia-agent-layout {
        grid-template-columns: 1fr;
    }

    .ia-agent-sidebar {
        position: relative;
        top: auto;
        order: -1;
    }

    .ia-agent-image {
        height: 520px;
    }
}

@media (max-width: 768px) {

    .ia-agent-hero h1 {
        font-size: 52px;
    }

    .ia-agent-image {
        height: 420px;
        border-radius: 28px;
    }

    .ia-agent-bio {
        font-size: 17px;
    }

    .ia-agent-card {
        padding: 28px;
    }
}

/* =========================================
   SINGLE INSIGHT
========================================= */

.ia-single-hero {
    position: relative;
    min-height: 88vh;
    display: flex;
    align-items: flex-end;
    overflow: hidden;
    background: #020b12;
    border-bottom: .1px solid rgb(17, 58, 17);
}

.ia-single-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    transform: scale(1.05);
}

.ia-single-overlay {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(to top,
            rgba(2, 11, 18, 0.98) 0%,
            rgba(2, 11, 18, 0.78) 40%,
            rgba(2, 11, 18, 0.25) 100%);
}

.ia-single-inner {
    position: relative;
    z-index: 5;
    padding-bottom: 100px;
    max-width: 950px;
}

.ia-single-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-bottom: 28px;
}

.ia-single-meta span {
    padding: 10px 16px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(14px);
    color: rgba(255, 255, 255, 0.85);
    font-size: 13px;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.ia-single-hero h1 {
    font-size: 84px;
    line-height: 1;
    font-weight: 300;
    color: #fff;
    margin-bottom: 28px;
}

.ia-single-excerpt {
    font-size: 22px;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.76);
    max-width: 780px;
}

/* =========================================
   CONTENT AREA
========================================= */

.ia-single-content-wrap {
    background: #020b12;
    padding: 90px 0 140px;
}

.ia-single-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 340px;
    gap: 80px;
}

.ia-single-content {
    color: rgba(255, 255, 255, 0.82);
    font-size: 19px;
    line-height: 2;
}

.ia-single-content h2,
.ia-single-content h3,
.ia-single-content h4 {
    color: #fff;
    margin-top: 60px;
    margin-bottom: 24px;
    line-height: 1.2;
}

.ia-single-content h2 {
    font-size: 42px;
}

.ia-single-content h3 {
    font-size: 34px;
}

.ia-single-content p {
    margin-bottom: 28px;
}

.ia-single-content img {
    width: 100%;
    border-radius: 28px;
    margin: 50px 0;
}

.ia-single-content blockquote {
    margin: 50px 0;
    padding: 40px;
    border-left: 4px solid #1f9b78;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 24px;
    font-size: 26px;
    line-height: 1.6;
    color: #fff;
}


/* =========================================
   SIDEBAR
========================================= */

.ia-single-sidebar {
    position: sticky;
    top: 120px;
    height: fit-content;
}

.ia-sidebar-card {
    background:
        linear-gradient(145deg,
            rgba(15, 26, 36, 0.95),
            rgba(7, 15, 22, 0.98));

    border: 1px solid rgba(255, 255, 255, 0.06);

    border-radius: 28px;

    padding: 32px;

    margin-bottom: 28px;
}

.ia-sidebar-card h3 {
    color: #fff;
    font-size: 22px;
    margin-bottom: 24px;
}

.ia-sidebar-cats {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.ia-sidebar-cats a {
    padding: 10px 16px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.05);
    color: rgba(255, 255, 255, 0.82);
    text-decoration: none;
    transition: .3s;
}

.ia-sidebar-cats a:hover {
    background: #1f9b78;
    color: #fff;
}

.ia-recent-post {
    display: flex;
    gap: 16px;
    margin-bottom: 20px;
    text-decoration: none;
}

.ia-recent-thumb {
    width: 88px;
    height: 88px;
    border-radius: 10px;
    background-size: cover;
    background-position: center;
    flex-shrink: 0;
    border: 1px solid rgba(255, 255, 255, 0.06);
}

.ia-recent-content h4 {
    color: #fff;
    font-size: 16px;
    line-height: 1.5;
    margin-bottom: 10px;
}

.ia-recent-content span {
    color: rgba(255, 255, 255, 0.45);
    font-size: 13px;
}

/* =========================================
   MOBILE
========================================= */

@media (max-width: 1100px) {

    .ia-single-layout {
        grid-template-columns: 1fr;
    }

    .ia-single-sidebar {
        position: relative;
        top: auto;
    }
}

@media (max-width: 768px) {

    .ia-single-hero {
        position: relative;
        min-height: 58vh;
        display: flex;
        align-items: flex-end;
        overflow: hidden;
        background: #020b12;
        border-bottom: .1px solid rgb(17, 58, 17);
    }

    .ia-single-inner {
        padding-bottom: 10px;
    }

    .ia-single-content-wrap {
        padding: 10px 0!important;
    }

    .ia-single-hero h1 {
        font-size: 52px;
    }

    .ia-single-excerpt {
        font-size: 18px;
    }

    .ia-single-content {
        font-size: 17px;
    }

    .ia-single-content h2 {
        font-size: 34px;
    }

    .ia-single-content blockquote {
        font-size: 22px;
        padding: 28px;
    }
}

/* CONTENT */
.ia-single-content-wrap {
    padding: 80px 0;
}

.ia-single-layout {
    display: grid;
    grid-template-columns: 1fr 320px;
    gap: 60px;
}

.ia-single-content {
    font-size: 18px;
    line-height: 1.9;
}

.ia-single-content p {
    margin-bottom: 28px;
}

.ia-single-content h2,
.ia-single-content h3 {
    margin: 50px 0 20px;
}

/* SIDEBAR */
.ia-sidebar-card {
    background: #161616;
    border-radius: 10px;
    padding: 24px;
    margin-bottom: 24px;
}

.ia-sidebar-card h3 {
    margin-bottom: 14px;
}

.ia-share-links {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.ia-share-links a {
    color: #16a085;
    text-decoration: none;
}

/* RELATED */
.ia-related-insights {
    padding: 80px 0;
}

.ia-related-insights h2 {
    margin-bottom: 40px;
}

/* MOBILE */
@media (max-width: 1024px) {

    .ia-single-layout {
        grid-template-columns: 1fr;
    }

    .ia-insight-hero h1 {
        font-size: 44px;
    }
}

@media (max-width: 768px) {

    .ia-insight-hero {
        min-height: 60vh;
    }

    .ia-insight-hero h1 {
        font-size: 34px;
    }

    .ia-single-content {
        font-size: 16px;
    }
}

/* =========================
   SKELETON LOADING
========================= */

.ia-skeleton {
    border-radius: 16px;
    overflow: hidden;
    background: #111;
}

.ia-skeleton-img {
    height: 280px;
    background: linear-gradient(90deg,
            #1a1a1a 25%,
            #2a2a2a 50%,
            #1a1a1a 75%);
    background-size: 200% 100%;
    animation: shimmer 1.4s infinite;
}

@keyframes shimmer {
    0% {
        background-position: -200% 0;
    }

    100% {
        background-position: 200% 0;
    }
}

/* LOAD */
.ia-load-more {
    text-align: center;
    padding: 20px;
    opacity: 0.6;
}

.ia-center {
    text-align: center;
    margin-top: 40px;
}

/* FALLBACK IMAGE */
.ia-image-fallback {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #111, #1f6f5c);
}

.ia-image-fallback::after {
    content: "No Image";
    position: absolute;
    bottom: 10px;
    right: 10px;
    font-size: 12px;
    color: rgba(255, 255, 255, 0.6);
}

/* =========================================
   CTA SECTION
========================================= */

.ia-cta-section {
    position: relative;
    overflow: hidden;

    padding: 140px 0;

    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.ia-cta-overlay {
    position: absolute;
    inset: 0;

    background:
        linear-gradient(to bottom,
            rgba(2, 11, 18, 0.72),
            rgba(2, 11, 18, 0.92));
}

.ia-cta-inner {
    position: relative;
    z-index: 5;
}

/* LAYOUT */

.lets_start {
    display: flex;
    justify-content: center;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.lets_start .lets_start_title {
    max-width: 920px;
}

/* TITLE */

.lets_start .lets_start_title h1 {
    margin: 18px 0 20px;
    font-size: clamp(42px, 6vw, 76px);
    line-height: 1.05;
    font-weight: 300;

    color: #fff;
}

/* TEXT */

.ia-cta-section p {
    font-size: 22px;
    line-height: 1.8;

    color: rgba(255, 255, 255, 0.76);

    margin-bottom: 38px;
}

/* BUTTON */

.ia-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    background: rgb(31, 111, 92);

    padding: 18px 36px;

    border-radius: 999px;

    color: #fff;
    text-decoration: none;

    font-size: 14px;
    letter-spacing: 2px;
    text-transform: uppercase;

    border: none !important;
    max-width: 320px;
    width: 78%;
    transition: .35s;
}

.ia-btn:hover {
    background: rgb(25, 92, 76);
    transform: translateY(-3px);
}

/* MOBILE */

@media (max-width: 768px) {

    .ia-cta-section {
        padding: 100px 0;
    }

    .ia-cta-section p {
        font-size: 18px;
    }

    .ia-btn {
        width: 100%;
        max-width: 240px;
    }
}

/* GRID */
.ia-footer-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
}

/* COLUMN GLASS */
.ia-footer-col {
    padding: 24px 0;
}

/* WIDGET TITLE */
.ia-footer-widget h2,
.ia-footer-widget h3 {
    font-size: 16px;
    color: #fff;
    margin-bottom: 16px;
}

/* REMOVE DEFAULT LIST STYLE */
.ia-footer-widget ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

/* LINKS */
.ia-footer-widget li {
    margin-bottom: 10px;
}

.ia-footer-widget a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: 0.3s;
}

.ia-footer-widget a:hover {
    color: #1f6f5c;
}

/* PARAGRAPH */
.ia-footer-widget p {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
}

/* FIX INPUTS FROM WIDGET */
.ia-footer-widget input {
    width: 93%;
    padding: 10px;
    margin-bottom: 10px;
    border: none;
    background: rgba(255, 255, 255, 0.05);
    color: #fff;
    border-radius: 6px;
}

/* BUTTON */
.ia-footer-widget button {
    width: 100%;
    padding: 12px;
    background: #1f6f5c;
    border: none;
    color: #fff;
    font-weight: 600;
    border-radius: 6px;
    cursor: pointer;
}

.ia-footer-bottom {
    text-align: center;
    padding-bottom: 2rem;
}

.ia-footer-bottom a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: 0.3s;
}

/* LIGHTBOX */
.ia-lightbox {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.95);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 9999;
}

.ia-lightbox img {
    max-width: 90%;
    max-height: 90%;
}

.ia-lightbox-close {
    position: absolute;
    top: 20px;
    right: 30px;
    font-size: 40px;
    color: #fff;
    cursor: pointer;
}

.ia-prev,
.ia-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    font-size: 40px;
    color: #fff;
    background: rgba(0, 0, 0, 0.3);
    border: none;
    cursor: pointer;
    padding: 10px;
    z-index: 10;
}

.ia-prev {
    left: 20px;
}

.ia-next {
    right: 20px;
}

/* =========================================
   SUBSCRIBE FORM
========================================= */

.ia-subscribe-form,
.ia-subscribe-form *,
.ia-subscribe-form *:before,
.ia-subscribe-form *:after {
    box-sizing: border-box;
}

/* FORM */

.ia-subscribe-form {
    width: 100%;

    display: flex;
    flex-direction: column;

    gap: 14px;
}

/* REMOVE CF7 P SPACING */

.ia-subscribe-form p {
    margin: 0;
    width: 100%;
}

/* FIELD */

.ia-subscribe-form .ia-field {
    width: 100%;
}

/* INPUTS */

.ia-subscribe-form input[type="text"],
.ia-subscribe-form input[type="email"] {

    width: 100% !important;
    max-width: 100%;

    height: 54px;

    padding: 0 18px;

    border-radius: 10px;

    border: 1px solid rgba(255, 255, 255, 0.08);

    background: rgba(255, 255, 255, 0.04);

    color: #fff;

    outline: none;

    display: block;
}

/* PLACEHOLDER */

.ia-subscribe-form input::placeholder {
    color: rgba(255, 255, 255, 0.45);
}

/* BUTTON */

.ia-subscribe-form .wpcf7-submit {

    width: 100% !important;
    max-width: 100%;

    height: 54px;

    border-radius: 10px;

    background: rgb(31, 111, 92);

    color: #fff;

    border: 0;

    font-size: 13px;
    letter-spacing: 2px;
    text-transform: uppercase;

    cursor: pointer;

    transition: .3s;

    display: block;
}

/* HOVER */

.ia-subscribe-form .wpcf7-submit:hover {
    background: rgb(25, 92, 76);
}

/* CF7 messages */

.wpcf7-response-output {
    margin-top: 12px !important;
    border-radius: 12px;
    color: #fff;
}

/* =========================
   PREMIUM SINGLE MAP
========================= */

.ia-map-wrapper {
    margin-top: 25px;
}

#ia-single-map {
    width: 100%;
    height: 320px;
    border-radius: 22px;
    overflow: hidden;
    background: #111;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
}

/* toolbar */
.ia-map-toolbar {
    display: flex;
    gap: 10px;
    margin-bottom: 14px;
}

.ia-map-btn {
    padding: 10px 14px;
    border-radius: 10px;
    border: none;
    background: #161616;
    color: #fff;
    text-decoration: none;
    cursor: pointer;
    transition: 0.25s ease;
    font-size: 13px;
}

.ia-map-btn:hover {
    background: #222;
}

/* premium pin */
.ia-custom-pin {
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: #16a085;
    border: 4px solid #fff;
    box-shadow:
        0 0 0 8px rgba(22, 160, 133, 0.18),
        0 0 20px rgba(22, 160, 133, 0.6);
}

/* popup */
.mapboxgl-popup-content {
    border-radius: 14px !important;
    padding: 14px !important;
    background: #111 !important;
    color: #fff;
}

.mapboxgl-popup-close-button {
    color: #fff;
}

.ia-map {
    margin-top: 20px;
    border-radius: 10px;
    overflow: hidden;
}

.ia-map iframe {
    width: 100%;
    height: 250px;
    border: 0;
    display: block;
}

.ia-cta {
    width: 95%;
    display: block;
    padding: 12px;
    background: #1f6f5c;
    text-decoration: none;
    border: none;
    color: #fff;
    font-weight: 600;
    text-align: center;
    border-radius: 6px;
    cursor: pointer;
}

.ia-cta.disabled {
    background: #555;
    cursor: not-allowed;
    pointer-events: none;
    opacity: 0.6;
}

/* SLIDER DOTS */
.ia-slider-dots {
    display: flex;
    gap: 10px;
    justify-content: center;
    margin-top: 15px;
}

.ia-dot {
    width: 10px;
    height: 10px;
    background: rgba(255, 255, 255, 0.4);
    border-radius: 50%;
    cursor: pointer;
}

.ia-dot.active {
    background: #fff;
}

/* Filter */
.ia-list-layout {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 10px;
}

/* LEFT */
.ia-list-left {
    position: relative;
}

/* RIGHT MAP */
.ia-list-map {
    position: sticky;
    top: 100px;
    height: calc(100vh - 120px);
    border: 1px solid #185a4b;
}

#ia-mapbox {
    width: 100%;
    height: 100%;
    overflow: hidden;
}

/* LOAD MORE */
.ia-load-more {
    text-align: center;
    padding: 20px;
    opacity: 0.6;
}

/* MOBILE */
@media (max-width: 1024px) {
    .ia-list-layout {
        grid-template-columns: 1fr;
    }

    .ia-list-map {
        height: 400px;
        position: relative;
    }
}

/* ================= RESPONSIVE ================= */

@media (max-width: 768px) {

    .ia-footer-col {
        padding: 5px 0!important;
    }

    .ia-footer-grid {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 20px;
    }

    /* 1st column full width */
    .ia-footer-col:nth-child(1) {
        grid-column: 1 / -1;
    }

    /* 2nd & 3rd = half width (auto) */

    /* 4th column full width */
    .ia-footer-col:nth-child(4) {
        grid-column: 1 / -1;
    }

    .ia-content-grid {
        grid-template-columns: 1fr;
        padding: 20px;
    }

    .ia-hero-text h1 {
        font-size: 36px;
        text-align: center;
    }

    /*  .ia-search-bar {
        flex-direction: column;
    }
 */
    /*  .ia-search-item {
        border-right: none;
        border-bottom: 1px solid #eee;
    }

    .ia-search-btn {
        width: 100%;
    }
 */
    .ia-menu {
        position: absolute;
        top: 80px;
        right: 0;
        background: #0b0f14;
        flex-direction: column;
        width: 200px;
        padding: 20px;
        display: none;
    }

    .ia-menu.active {
        display: none !important;
    }

    .ia-burger {
        display: flex;
    }


    .ia-services-layout {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .ia-service-grid {
        grid-template-columns: 1fr;
    }
}

/* RESPONSIVE */
@media (max-width: 1024px) {
    .ia-listings-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}