    :root {
        --pi-primary: #1a5c6e;
        --pi-primary-dark: #124554;
        --pi-primary-light: #2a7a8f;
        --pi-accent: #c9a54a;
        --pi-accent-light: #d4b35f;
        --pi-bg: #0d1f24;
        --pi-bg-dark: #081518;
        --pi-card: #112a31;
        --pi-text: #e8e8e8;
        --pi-muted: #9ab0b5;
        --pi-border: rgba(201, 165, 74, 0.3);
        --pi-white: #ffffff;
        --transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);

        --primary: #1a5c6e;
        --primary-dark: #1a5c6e;
        --primary-light: #fff4ed;
        --secondary: #202532;
        --text-muted: #747b86;
        --border-light: #e8ecf0;
        --shadow-card: 0 8px 30px rgba(0, 0, 0, 0.08);
        --shadow-hover: 0 20px 40px rgba(0, 0, 0, 0.15);
        --radius-card: 20px;
        --transition-smooth: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
        --jacob-ink: #102d37;
        --jacob-teal: #124554;
        --jacob-gold: #c9a54a;
        --jacob-cream: #f8f6f1;
        --jacob-muted: #66757b;

    }

    * {
        margin: 0;
        padding: 0;
        box-sizing: border-box;
    }

    body {
        font-family: 'Segoe UI', 'Arial', sans-serif;
        background: #f5f5f5;
        overflow-x: hidden;
    }

    /* ============================
    PROSPERRA FOOTER
    ============================ */
    .pi-footer {
        width: 100%;
        background: var(--pi-bg);
        color: var(--pi-text);
        position: relative;
        overflow: hidden;
        animation: piFadeIn 1s ease-out;
    }

    @keyframes piFadeIn {
        from {
            opacity: 0;
            transform: translateY(50px);
        }

        to {
            opacity: 1;
            transform: translateY(0);
        }
    }

    /* Animated gradient overlay */
    .pi-footer::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 3px;
        background: linear-gradient(90deg,
                var(--pi-primary) 0%,
                var(--pi-accent) 50%,
                var(--pi-primary) 100%);
        background-size: 200% 100%;
        animation: piShimmer 3s linear infinite;
    }

    @keyframes piShimmer {
        0% {
            background-position: 200% 0;
        }

        100% {
            background-position: -200% 0;
        }
    }

    .pi-footer::after {
        content: '';
        position: absolute;
        top: 0;
        right: -200px;
        width: 500px;
        height: 500px;
        background: radial-gradient(circle, rgba(26, 92, 110, 0.1) 0%, transparent 70%);
        animation: piPulse 6s ease-in-out infinite;
        pointer-events: none;
    }

    @keyframes piPulse {

        0%,
        100% {
            transform: scale(1);
            opacity: 0.3;
        }

        50% {
            transform: scale(1.5);
            opacity: 0.6;
        }
    }

    .pi-footer a {
        color: inherit;
        text-decoration: none;
        transition: var(--transition);
    }

    /* ============================
    MAIN CONTENT
    ============================ */
    .pi-footer-main {
        max-width: 1280px;
        margin: 0 auto;
        padding: 70px 20px 40px;
        display: grid;
        grid-template-columns: 1.6fr 1fr 1fr 1.3fr 1.1fr;
        gap: 35px;
        position: relative;
        z-index: 1;
    }

    /* Brand Section */
    .pi-brand {
        padding-right: 20px;
        animation: piSlideLeft 0.8s ease-out;
    }

    @keyframes piSlideLeft {
        from {
            opacity: 0;
            transform: translateX(-50px);
        }

        to {
            opacity: 1;
            transform: translateX(0);
        }
    }

    .pi-logo {
        display: flex;
        align-items: center;
        margin-bottom: 20px;
        cursor: pointer;
        transition: var(--transition);
    }

    .pi-logo:hover {
        transform: scale(1.05);
    }

    .pi-logo-icon {
        width: 50px;
        height: 50px;
        background: linear-gradient(135deg, var(--pi-primary) 0%, var(--pi-primary-light) 100%);
        border-radius: 12px;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 24px;
        font-weight: 900;
        color: var(--pi-white);
        margin-right: 12px;
        box-shadow: 0 5px 20px rgba(26, 92, 110, 0.4);
        transition: var(--transition);
    }

    .pi-logo:hover .pi-logo-icon {
        transform: rotate(360deg);
        box-shadow: 0 8px 30px rgba(26, 92, 110, 0.6);
    }

    .pi-logo-text {
        font-size: 28px;
        font-weight: 800;
        color: var(--pi-white);
        letter-spacing: -1px;
        line-height: 1;
    }

    .pi-logo-text span {
        color: var(--pi-accent);
    }

    .pi-logo-subtitle {
        font-size: 11px;
        color: var(--pi-muted);
        text-transform: uppercase;
        letter-spacing: 2px;
    }

    .pi-tagline {
        color: var(--pi-muted);
        font-size: 14px;
        line-height: 1.7;
        max-width: 300px;
        margin: 0 0 25px;
    }

    .pi-contact-list {
        list-style: none;
        padding: 0;
        margin: 0 0 25px;
    }

    .pi-contact-item {
        display: flex;
        gap: 14px;
        margin-bottom: 18px;
        transition: var(--transition);
        cursor: pointer;
    }

    .pi-contact-item:hover {
        transform: translateX(8px);
    }

    .pi-contact-icon {
        width: 40px;
        height: 40px;
        min-width: 40px;
        background: var(--pi-card);
        border: 1px solid var(--pi-border);
        border-radius: 10px;
        display: flex;
        align-items: center;
        justify-content: center;
        color: var(--pi-accent);
        font-size: 18px;
        transition: var(--transition);
    }

    .pi-contact-item:hover .pi-contact-icon {
        background: var(--pi-primary);
        color: var(--pi-white);
        border-color: var(--pi-primary);
        transform: scale(1.1);
        box-shadow: 0 5px 15px rgba(26, 92, 110, 0.4);
    }

    .pi-contact-label {
        display: block;
        color: var(--pi-muted);
        font-size: 11px;
        text-transform: uppercase;
        letter-spacing: 0.5px;
        margin-bottom: 4px;
    }

    .pi-contact-value {
        color: var(--pi-text);
        font-size: 14px;
        line-height: 1.5;
        transition: var(--transition);
    }

    .pi-contact-item:hover .pi-contact-value {
        color: var(--pi-accent);
    }

    .pi-socials {
        display: flex;
        gap: 12px;
    }

    .pi-social {
        width: 42px;
        height: 42px;
        background: var(--pi-card);
        border: 1px solid var(--pi-border);
        border-radius: 10px;
        display: flex;
        align-items: center;
        justify-content: center;
        color: var(--pi-muted);
        font-size: 16px;
        font-weight: 700;
        transition: var(--transition);
        position: relative;
        overflow: hidden;
    }

    .pi-social::before {
        content: '';
        position: absolute;
        width: 100%;
        height: 100%;
        background: linear-gradient(135deg, var(--pi-primary) 0%, var(--pi-primary-light) 100%);
        border-radius: 10px;
        transform: scale(0);
        transition: var(--transition);
    }

    .pi-social:hover {
        color: var(--pi-white);
        border-color: var(--pi-primary);
        transform: translateY(-5px);
        box-shadow: 0 8px 20px rgba(26, 92, 110, 0.3);
    }

    .pi-social:hover::before {
        transform: scale(1);
    }

    .pi-social span {
        position: relative;
        z-index: 1;
    }

    /* Column Styles */
    .pi-col {
        animation: piFadeUp 0.8s ease-out;
    }

    .pi-col:nth-child(2) {
        animation-delay: 0.1s;
    }

    .pi-col:nth-child(3) {
        animation-delay: 0.2s;
    }

    .pi-col:nth-child(4) {
        animation-delay: 0.3s;
    }

    .pi-col:nth-child(5) {
        animation-delay: 0.4s;
    }

    @keyframes piFadeUp {
        from {
            opacity: 0;
            transform: translateY(40px);
        }

        to {
            opacity: 1;
            transform: translateY(0);
        }
    }

    .pi-col-title {
        color: var(--pi-white);
        font-size: 16px;
        font-weight: 700;
        margin: 0 0 20px;
        text-transform: uppercase;
        letter-spacing: 1px;
        position: relative;
        padding-bottom: 10px;
    }

    .pi-col-title::after {
        content: '';
        position: absolute;
        bottom: 0;
        left: 0;
        width: 30px;
        height: 3px;
        background: var(--pi-accent);
        transition: var(--transition);
    }

    .pi-col:hover .pi-col-title::after {
        width: 60px;
        background: var(--pi-primary-light);
    }

    .pi-col-list {
        list-style: none;
        padding: 0;
        margin: 0;
    }

    .pi-col-list li {
        margin-bottom: 12px;
    }

    .pi-col-list a {
        color: var(--pi-muted);
        font-size: 13px;
        position: relative;
        padding-left: 0;
        transition: var(--transition);
        display: inline-block;
    }

    .pi-col-list a::before {
        content: '▸';
        position: absolute;
        left: -20px;
        opacity: 0;
        color: var(--pi-accent);
        transition: var(--transition);
    }

    .pi-col-list a:hover {
        color: var(--pi-accent);
        padding-left: 20px;
        transform: translateX(5px);
    }

    .pi-col-list a:hover::before {
        opacity: 1;
        left: 0;
    }

    /* Quick Contact */
    .pi-quick-contact {
        background: var(--pi-card);
        border: 1px solid var(--pi-border);
        border-radius: 15px;
        padding: 20px;
        transition: var(--transition);
        animation: piFadeUp 0.8s ease-out 0.6s both;
    }

    .pi-quick-contact:hover {
        border-color: var(--pi-accent);
        transform: translateY(-5px);
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    }

    .pi-quick-title {
        color: var(--pi-white);
        font-size: 16px;
        font-weight: 700;
        margin-bottom: 15px;
        text-transform: uppercase;
        letter-spacing: 1px;
    }

    .pi-quick-btn {
        display: inline-block;
        width: 100%;
        padding: 12px 20px;
        background: var(--pi-accent);
        color: var(--pi-bg);
        border-radius: 8px;
        font-weight: 700;
        text-align: center;
        font-size: 14px;
        transition: var(--transition);
        text-transform: uppercase;
        letter-spacing: 0.5px;
    }

    .pi-quick-btn:hover {
        background: var(--pi-accent-light);
        transform: translateY(-3px);
        box-shadow: 0 8px 20px rgba(201, 165, 74, 0.4);
    }

    /* Bottom Bar */
    .pi-bottom {
        max-width: 1280px;
        margin: 30px auto 0;
        padding: 25px 20px 30px;
        border-top: 1px solid rgba(201, 165, 74, 0.2);
        display: flex;
        justify-content: space-between;
        align-items: center;
        position: relative;
        z-index: 1;
    }

    .pi-copyright {
        color: var(--pi-muted);
        font-size: 12px;
        letter-spacing: 0.5px;
    }

    .pi-bottom-links {
        display: flex;
        gap: 20px;
        list-style: none;
        padding: 0;
        margin: 0;
    }

    .pi-bottom-links a {
        color: var(--pi-muted);
        font-size: 12px;
        transition: var(--transition);
    }

    .pi-bottom-links a:hover {
        color: var(--pi-accent);
    }

    /* Scroll to top */
    .pi-scroll-top {
        position: fixed;
        bottom: 30px;
        right: 30px;
        width: 50px;
        height: 50px;
        background: linear-gradient(135deg, var(--pi-primary) 0%, var(--pi-primary-light) 100%);
        border-radius: 12px;
        display: flex;
        align-items: center;
        justify-content: center;
        color: var(--pi-white);
        font-size: 24px;
        cursor: pointer;
        z-index: 999;
        box-shadow: 0 5px 20px rgba(26, 92, 110, 0.4);
        transition: var(--transition);
        animation: piBounce 2s ease-in-out infinite;
    }

    .pi-scroll-top:hover {
        background: var(--pi-accent);
        transform: scale(1.1);
        animation: none;
        box-shadow: 0 8px 30px rgba(201, 165, 74, 0.6);
    }

    /* Responsive */
    @media(max-width: 1200px) {
        .pi-footer-main {
            grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
            gap: 30px;
        }

        .pi-brand {
            grid-column: 1/2;
        }

        .pi-newsletter,
        .pi-quick-contact {
            grid-column: auto;
        }
    }

    @media(max-width: 992px) {
        .pi-footer-main {
            grid-template-columns: 1fr 1fr;
            gap: 30px;
        }

        .pi-brand {
            grid-column: 1/-1;
        }

        .pi-newsletter,
        .pi-quick-contact {
            grid-column: auto;
        }

        .pi-rera-box {
            grid-template-columns: 1fr 1fr;
        }
    }

    @media(max-width: 768px) {
        .pi-footer-main {
            grid-template-columns: 1fr;
            gap: 30px;
            padding-top: 40px;
        }

        .pi-rera-box {
            grid-template-columns: 1fr;
            gap: 20px;
        }

        .pi-rera-item {
            border-left: 0;
            border-top: 1px solid rgba(201, 165, 74, 0.2);
            padding: 15px 0 0;
        }

        .pi-bottom {
            flex-direction: column;
            gap: 15px;
            text-align: center;
        }

        .pi-scroll-top {
            bottom: 20px;
            right: 20px;
            width: 40px;
            height: 40px;
            font-size: 20px;
            border-radius: 10px;
        }
    }




















    /* ============================================================================
  Section - 1 HERO SECTION
================================================================================== */

    .hero-banner {
        width: 100%;
        max-width: 1440px;
        height: 700px;
        margin: 0 auto;
        position: relative;
        overflow: hidden;
        border-radius: 25px;
        background: #222;
    }

    /* ========== VIDEO ============ */
    .hero-video {
        position: absolute;
        inset: 0;
        width: 100%;
        height: 100%;
        object-fit: cover;
        z-index: 1;
    }

    /* =========================================
    OVERLAY
    ========================================= */

    .hero-overlay {

        position: absolute;

        inset: 0;

        z-index: 2;

        background:
            linear-gradient(to bottom,
                rgba(0, 0, 0, 0.08),
                rgba(0, 0, 0, 0.18));

    }

    /* =========== HERO TEXT ======= */

    .hero-content {
        position: absolute;
        z-index: 4;
        top: 305px;
        left: 50%;
        transform: translateX(-50%);
        width: 700px;
        text-align: center;
    }

    .hero-content h1 {
        margin: 0;
        color: #fff;
        font-size: 48px;
        line-height: 1.05;
        font-weight: 700;
        font-style: italic;
        text-shadow: 0 3px 8px rgba(0, 0, 0, 0.5);
    }

    .hero-content h1 span {
        font-size: 42px;
    }

    /* =========================================
    LEFT SIDE ARROW
    ========================================= */

    .side-arrow {

        position: fixed;

        left: 0;

        top: 400px;

        z-index: 20;

        width: 60px;

        height: 60px;

        border: none;

        border-radius:
            0 30px 30px 0;

        background: #1a5c6e;

        color: white;

        font-size: 27px;

        cursor: pointer;

    }

    /* =========================================
    SEARCH CONTAINER
    ========================================= */

    .property-search {

        position: absolute;

        z-index: 10;

        left: 50%;

        bottom: 116px;

        transform: translateX(-50%);

        width: 70%;

        max-width: 1020px;

        background: rgba(255,
                255,
                255,
                0.88);

        backdrop-filter: blur(10px);

        border-radius: 20px;

        overflow: visible;

        box-shadow:
            0 10px 35px rgba(0, 0, 0, 0.18);

    }

    /* =========================================
    SEARCH TOP
    ========================================= */

    .search-top {
        min-height: 75px;
        display: grid;
        grid-template-columns:
            1fr 1fr 58px 58px;
        align-items: center;
        padding: 0 15px 0 22px;

    }

    /* =========================================
    SEARCH FIELD
    ========================================= */

    .search-field {

        min-height: 48px;

        padding:
            0 24px;

        border-right:
            1px solid rgba(100, 100, 100, 0.16);

    }

    .search-field label {

        display: block;

        color: #202638;

        font-size: 14px;

        font-weight: 700;

        margin-bottom: 6px;

    }

    .field-value {

        display: flex;

        justify-content: space-between;

        align-items: center;

        color: #202638;

        font-size: 14px;

    }

    .property-select {

        color: #777d88;

        cursor: pointer;

    }

    .down-arrow {

        color: #68717c;

    }

    /* =========================================
    SEARCH INPUT
    ========================================= */

    .search-input {

        display: flex;

        align-items: center;

    }

    .search-input input {

        width: 100%;

        border: none;

        outline: none;

        background: transparent;

        color: #222;

        font-size: 14px;

    }

    .search-input input::placeholder {

        color: #858b95;

    }

    .search-small-icon {

        color: #7d8792;

        font-size: 20px;

    }

    /* =========================================
    SEARCH BUTTONS
    ========================================= */

    .search-btn {

        width: 95px;

        height: 45px;

        border: none;

        border-radius: 15px;

        background: #1a5c6e;

        color: #fff;

        font-size: 28px;

        cursor: pointer;

        margin-left: 8px;

    }


    /* =========================================
    PROPERTY DROPDOWN
    ========================================= */

    .property-type-field {

        position: relative;

    }

    .search-field-main {

        position: relative;

    }

    .property-dropdown {

        position: absolute;

        top: 66px;

        left: 22px;

        width: 240px;

        background: #fff;

        border-radius: 12px;

        box-shadow:
            0 12px 30px rgba(0, 0, 0, 0.18);

        overflow: hidden;

        display: none;

        z-index: 50;

    }

    .project-dropdown {

        left: 24px;

        right: 24px;

        width: auto;

        max-height: 260px;

        overflow-y: auto;

    }

    .project-select {

        cursor: pointer;

    }

    .project-select.disabled {

        cursor: not-allowed;

        opacity: 0.7;

    }

    .property-dropdown.open {

        display: block;

    }

    .property-option {

        padding: 18px;

        font-size: 14px;

        color: #202638;

        cursor: pointer;

    }

    .property-option:hover {

        background: #fff3eb;

        color: #1a5c6e;

    }

    /* =========================================
    SEARCH BOTTOM
    ========================================= */

    .search-bottom {

        height: 68px;

        border-top:
            1px solid rgba(100, 100, 100, 0.12);

        display: flex;

        align-items: center;

        padding: 0 22px;

    }

    .search-history {

        width: 190px;

        margin-right: 25px;

    }

    .history-title {

        color: #202638;

        font-size: 11px;

        font-weight: 800;

        white-space: nowrap;

    }

    .history-icon {

        color: #1a5c6e;

        margin-right: 6px;

    }

    .history-text {

        margin-top: 9px;

        color: #777f8a;

        font-size: 12px;

        white-space: nowrap;

    }

    .view-all-properties {

        margin-left: auto;

        text-decoration: none;

        color: #1a5c6e;

        font-size: 12px;

        font-weight: 700;

    }

    .view-all-properties span {

        font-size: 18px;

        margin-left: 4px;

    }

    /* =========================================
    PLAY BUTTON
    ========================================= */

    .video-play {

        position: absolute;

        left: 20px;

        bottom: 15px;

        z-index: 50;

        width: 45px;

        height: 45px;

        border-radius: 50%;

        border:
            1px solid #1a5c6e;

        background: white;

        color: #1a5c6e;

        cursor: pointer;

        font-size: 18px;

    }

    /* =========================================
    RESPONSIVE
    ========================================= */

    @media (max-width: 1200px) {

        .hero-banner {

            width: 94%;

        }

        .property-search {

            width: 80%;

        }

        .hero-content h1 {

            font-size: 40px;

        }

    }

    @media (max-width: 900px) {

        .hero-banner {

            height: 650px;

        }

        .property-search {

            width: 90%;

            bottom: 45px;

        }

        .search-top {

            grid-template-columns:
                1fr 1fr 1fr;

            padding: 15px;

        }

        .search-btn,
        .voice-btn {

            display: none;

        }

        .search-bottom {

            display: none;

        }

    }

    @media (max-width: 600px) {

        .hero-banner {

            width: 100%;

            height: 620px;

            border-radius: 0;

        }

        .hero-content {

            width: 90%;

            top: 170px;

        }

        .hero-content h1 {

            font-size: 30px;

        }

        .hero-content h1 span {

            font-size: 28px;

        }

        .property-search {

            width: 92%;

            bottom: 25px;

        }

        .search-top {

            display: block;

            padding: 15px;

        }

        .search-field {

            border-right: none;

            border-bottom:
                1px solid #eee;

            padding: 12px 5px;

        }

        .search-field-main {

            border-bottom: none;

        }

    }











    /* ====================================================================
  Section - 2  Find the Right Property with Expert Guidance
 =============================================== */

    .trusted-section {

        position: relative;

        width: 100%;

        min-height: 650px;

        padding:
            35px 20px 55px;

        background: #fff;

        overflow: hidden;

    }


    /* =====================================
   HEADING
===================================== */

    .trusted-heading {

        text-align: center;

        position: relative;

        z-index: 5;

        margin-bottom: 25px;

    }

    .trusted-heading h2 {

        margin: 0;

        color: #202534;

        font-size: 34px;

        font-weight: 700;

        letter-spacing: -1.5px;

    }

    .trusted-heading p {

        margin-top: 10px;

        color: #555b66;

        font-size: 11px;

    }

    .trusted-heading p span {

        color: #111;

        margin-right: 7px;

    }


    /* =====================================
   MAIN WRAPPER
===================================== */

    .trusted-wrapper {

        width: 100%;

        max-width: 800px;

        margin: auto;

        display: grid;

        grid-template-columns:
            /* 175px 320px 275px; */
            370px 320px 350px;

        justify-content: center;

        gap: 25px;

        align-items: center;

    }


    /* =====================================
   LEFT / RIGHT
===================================== */

    .trusted-left,
    .trusted-right {

        display: flex;

        flex-direction: column;

        gap: 15px;

    }


    /* =====================================
   SMALL CARDS
===================================== */

    .small-card {

        width: 100%;

        min-height: 60px;

        padding: 12px 17px;

        display: flex;

        align-items: center;

        gap: 12px;

        background: #fff;

        border-radius: 15px;

        box-shadow:
            0 7px 25px rgba(28, 32, 42, 0.09);

    }

    .card-icon {

        width: 28px;

        height: 28px;

        display: flex;

        align-items: center;

        justify-content: center;

        color: #1a5c6e;

        font-size: 21px;

        flex-shrink: 0;

    }

    .small-card strong {

        display: block;

        color: #252a39;

        font-size: 17px;

        line-height: 1.1;

    }

    .small-card small {

        display: block;

        margin-top: 2px;

        color: #9296a0;

        font-size: 8px;

    }


    /* =====================================
   DESCRIPTION CARD
===================================== */

    .description-card {

        width: 100%;

        min-height: 290px;

        padding: 22px 18px;

        display: flex;

        flex-direction: column;

        justify-content: center;

        align-items: center;

        text-align: center;

        background: #fff;

        border-radius: 15px;

        box-shadow:
            0 10px 30px rgba(28, 32, 42, 0.09);

    }

    .description-card p {

        margin: 0;

        color: #727783;

        font-size: 12px;

        line-height: 1.65;

    }

    .description-card p span {

        color: #1a5c6e;

        font-weight: 600;

    }


    /* =====================================
   BUTTON
===================================== */

    .orange-btn {

        display: inline-flex;

        align-items: center;

        justify-content: center;

        margin-top: 16px;

        min-width: 100px;

        height: 28px;

        padding: 0 15px;

        background: #1a5c6e;

        color: white;

        text-decoration: none;

        border-radius: 20px;

        font-size: 9px;

        font-weight: 700;

        transition: 0.25s;

    }

    .orange-btn:hover {

        background: #e94e15;

        transform: translateY(-2px);

    }


    /* =====================================
   EXPERT CARD
===================================== */

    .expert-card {

        width: 100%;

        height: 60px;

        text-decoration: none;

        padding: 10px 15px;

        display: flex;

        align-items: center;

        gap: 10px;

        background: white;

        border-radius: 15px;

        box-shadow:
            0 7px 25px rgba(28, 32, 42, 0.09);

    }

    .expert-card strong {

        color: #252a39;

        font-size: 14px;

    }


    /* =====================================
   CENTER
===================================== */

    .trusted-center {

        width: 320px;

        height: 390px;

        position: relative;

        display: flex;

        align-items: center;

        justify-content: center;

    }


    /* =====================================
   CIRCLES
===================================== */

    .circle {

        position: absolute;

        border: 1px solid #ffcbb6;

        border-radius: 50%;

    }

    .circle-one {

        width: 310px;

        height: 310px;

    }

    .circle-two {

        width: 265px;

        height: 265px;

    }

    .circle-three {

        width: 225px;

        height: 225px;

    }


    /* =====================================
   CENTER IMAGE
===================================== */

    .center-image {

        width: 285px;

        height: 355px;

        position: relative;

        z-index: 3;

        overflow: hidden;

        box-shadow:
            0 15px 35px rgba(0, 0, 0, 0.14);

    }

    .center-image img {

        width: 100%;

        height: 100%;

        object-fit: cover;

        display: block;

    }


    /* =====================================
   DECORATIVE ARROWS
===================================== */

    .orange-arrow {

        position: absolute;

        z-index: 5;

        color: #1a5c6e;

        font-size: 35px;

        font-weight: 300;

    }

    .arrow-top {

        right: 0;

        top: 40px;

        transform: rotate(-20deg);

    }

    .arrow-bottom {

        left: 0;

        bottom: 20px;

        transform: rotate(160deg);

    }


    /* =====================================
   LEFT DECORATION
===================================== */

    .decorative-line {

        position: absolute;

        left: 20px;

        top: -20px;

        width: 75px;

        height: 290px;

        border-left:
            3px solid #1a5c6e;

        border-radius: 50%;

        transform:
            rotate(-12deg);

        opacity: .8;

    }


    /* =====================================
   RESPONSIVE
===================================== */

    @media (max-width: 1100px) {

        .trusted-wrapper {

            grid-template-columns:
                160px 300px 160px;

            gap: 18px;

        }

        .trusted-center {

            width: 300px;

        }

        .center-image {

            width: 270px;

        }

    }


    @media (max-width: 850px) {

        .trusted-section {

            padding-top: 30px;

        }

        .trusted-wrapper {

            grid-template-columns: 1fr;

            max-width: 450px;

        }

        .trusted-center {

            width: 100%;

            order: -1;

        }

        .trusted-left,
        .trusted-right {

            width: 100%;

        }

        .small-card {

            justify-content: center;

        }

    }


    @media (max-width: 500px) {

        .trusted-heading h2 {

            font-size: 26px;

        }

        .trusted-center {

            height: 330px;

        }

        .center-image {

            width: 240px;

            height: 300px;

        }

        .circle-one {

            width: 270px;

            height: 270px;

        }

        .circle-two {

            width: 235px;

            height: 235px;

        }

        .circle-three {

            width: 200px;

            height: 200px;

        }

        .decorative-line {

            display: none;

        }

    }






    /* =========================================
   Section - 3   Premium Residential & Commercial Properties
========================================= */
    :root {
        --primary: #1a5c6e;
        --primary-dark: #1a5c6e;
        --primary-light: #fff4ed;
        --secondary: #202532;
        --text-muted: #747b86;
        --border-light: #e8ecf0;
        --shadow-card: 0 8px 30px rgba(0, 0, 0, 0.08);
        --shadow-hover: 0 20px 40px rgba(0, 0, 0, 0.15);
        --radius-card: 20px;
        --transition-smooth: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    }

    /* =========================================
   SECTION WRAPPER
========================================= */
    .properties-section {
        position: relative;
        width: 100%;
        padding: 60px 20px 100px;
        background: #ffffff;
        overflow: hidden;
        font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    }

    /* Animated Background Gradient */
    .properties-section::before {
        content: '';
        position: absolute;
        top: -50%;
        left: -50%;
        width: 200%;
        height: 200%;
        background: radial-gradient(circle at 30% 20%, rgba(255, 92, 32, 0.03) 0%, transparent 60%),
            radial-gradient(circle at 70% 80%, rgba(255, 92, 32, 0.02) 0%, transparent 50%);
        animation: bgFloat 20s ease-in-out infinite alternate;
        z-index: 0;
        pointer-events: none;
    }

    @keyframes bgFloat {
        0% {
            transform: translate(0, 0) rotate(0deg);
        }

        100% {
            transform: translate(2%, -2%) rotate(3deg);
        }
    }

    /* make this by code with scrooling  */
    /* Cityscape Background - Enhanced */
    .properties-section::after {
        content: "";
        position: absolute;
        left: 50%;
        bottom: 0;
        transform: translateX(-50%);
        width: 100%;
        height: 200px;
        background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1200 200'%3E%3Crect x='0' y='140' width='80' height='60' fill='%23f0f2f5'/%3E%3Crect x='20' y='110' width='40' height='30' fill='%23e8ecf0'/%3E%3Crect x='30' y='90' width='20' height='20' fill='%23dfe3e8'/%3E%3Crect x='100' y='120' width='60' height='80' fill='%23e8ecf0'/%3E%3Crect x='120' y='90' width='30' height='30' fill='%23dfe3e8'/%3E%3Crect x='180' y='130' width='70' height='70' fill='%23f0f2f5'/%3E%3Crect x='200' y='100' width='30' height='30' fill='%23e8ecf0'/%3E%3Crect x='270' y='110' width='50' height='90' fill='%23e8ecf0'/%3E%3Crect x='285' y='80' width='20' height='30' fill='%23dfe3e8'/%3E%3Crect x='340' y='140' width='80' height='60' fill='%23f0f2f5'/%3E%3Crect x='360' y='100' width='40' height='40' fill='%23e8ecf0'/%3E%3Crect x='440' y='120' width='55' height='80' fill='%23e8ecf0'/%3E%3Crect x='455' y='90' width='25' height='30' fill='%23dfe3e8'/%3E%3Crect x='510' y='130' width='65' height='70' fill='%23f0f2f5'/%3E%3Crect x='530' y='100' width='25' height='30' fill='%23e8ecf0'/%3E%3Crect x='590' y='140' width='70' height='60' fill='%23e8ecf0'/%3E%3Crect x='610' y='110' width='30' height='30' fill='%23dfe3e8'/%3E%3Crect x='680' y='120' width='60' height='80' fill='%23f0f2f5'/%3E%3Crect x='695' y='90' width='30' height='30' fill='%23e8ecf0'/%3E%3Crect x='760' y='130' width='50' height='70' fill='%23e8ecf0'/%3E%3Crect x='830' y='140' width='80' height='60' fill='%23f0f2f5'/%3E%3Crect x='850' y='110' width='40' height='30' fill='%23e8ecf0'/%3E%3Crect x='930' y='120' width='60' height='80' fill='%23e8ecf0'/%3E%3Crect x='950' y='90' width='20' height='30' fill='%23dfe3e8'/%3E%3Crect x='1010' y='130' width='70' height='70' fill='%23f0f2f5'/%3E%3Crect x='1100' y='140' width='100' height='60' fill='%23e8ecf0'/%3E%3Crect x='1120' y='110' width='40' height='30' fill='%23dfe3e8'/%3E%3C/svg%3E");
        background-repeat: repeat-x;
        background-position: center bottom;
        background-size: 1200px 180px;
        opacity: 0.5;
        pointer-events: none;
        z-index: 0;
        animation: cityScroll 30s linear infinite;
    }

    @keyframes cityScroll {
        0% {
            background-position: 0% bottom;
        }

        100% {
            background-position: 1200px bottom;
        }
    }

    /* =========================================
   HEADING
========================================= */
    .properties-heading {
        position: relative;
        z-index: 2;
        max-width: 850px;
        margin: 0 auto;
        text-align: center;
        opacity: 0;
        animation: fadeUp 0.8s ease forwards 0.2s;
    }

    @keyframes fadeUp {
        from {
            opacity: 0;
            transform: translateY(30px);
        }

        to {
            opacity: 1;
            transform: translateY(0);
        }
    }

    .properties-heading h2 {
        margin: 0;
        color: var(--secondary);
        font-size: 42px;
        line-height: 1.1;
        font-weight: 600;
        letter-spacing: -0.02em;
    }

    .properties-heading h2 .highlight {
        color: var(--primary);
        position: relative;
        display: inline-block;
    }

    .properties-heading h2 .highlight::after {
        content: '';
        position: absolute;
        left: 0;
        bottom: 2px;
        width: 100%;
        height: 6px;
        background: var(--primary);
        opacity: 0.25;
        border-radius: 3px;
    }

    .heading-subtitle {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 12px;
        margin-top: 20px;
        color: var(--primary);
        font-size: 11px;
        font-weight: 700;
        letter-spacing: 2px;
        text-transform: uppercase;
    }

    .heading-subtitle span {
        width: 30px;
        height: 2px;
        background: var(--primary);
        border-radius: 2px;
        transition: width 0.3s ease;
    }

    .heading-subtitle:hover span {
        width: 50px;
    }

    .properties-heading p {
        max-width: 680px;
        margin: 18px auto 0;
        color: var(--text-muted);
        font-size: 14px;
        line-height: 1.7;
        font-weight: 400;
    }

    /* =========================================
   CATEGORY TABS
========================================= */
    .category-tabs {
        position: relative;
        z-index: 2;
        max-width: 1100px;
        margin: 48px auto 0;
        display: flex;
        justify-content: center;
        gap: 60px;
        border-bottom: 2px solid var(--border-light);
        padding-bottom: 0;
        opacity: 0;
        animation: fadeUp 0.8s ease forwards 0.4s;
    }

    .category-tab {
        position: relative;
        height: 52px;
        padding: 0 12px;
        border: 0;
        background: transparent;
        color: #9aa1ab;
        font-size: 13px;
        font-weight: 700;
        letter-spacing: 0.5px;
        cursor: pointer;
        transition: var(--transition-smooth);
        text-transform: uppercase;
    }

    .category-tab::before {
        content: '';
        position: absolute;
        bottom: -2px;
        left: 50%;
        transform: translateX(-50%) scaleX(0);
        width: 40%;
        height: 3px;
        background: var(--primary);
        border-radius: 3px 3px 0 0;
        transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    }

    .category-tab:hover {
        color: var(--secondary);
    }

    .category-tab:hover::before {
        transform: translateX(-50%) scaleX(0.6);
    }

    .category-tab.active {
        color: var(--secondary);
    }

    .category-tab.active::before {
        transform: translateX(-50%) scaleX(1);
        width: 60%;
    }

    .category-tab .tab-icon {
        display: inline-block;
        margin-right: 8px;
        font-size: 16px;
        vertical-align: middle;
    }

    /* =========================================
   CATEGORY CONTENT
========================================= */
    .category-content {
        display: none;
        max-width: 1100px;
        margin: 38px auto 0;
        position: relative;
        z-index: 2;
        animation: fadeInContent 0.5s ease forwards;
    }

    @keyframes fadeInContent {
        from {
            opacity: 0;
            transform: translateY(20px);
        }

        to {
            opacity: 1;
            transform: translateY(0);
        }
    }

    .category-content.active {
        display: block;
    }

    /* =========================================
   PROPERTY GRID
========================================= */
    .property-grid {
        display: flex;
        gap: 20px;
        overflow-x: auto;
        padding: 5px 4px 18px;
        scrollbar-width: none;
    }

    .property-grid::-webkit-scrollbar {
        display: none;
    }

    /* =========================================
   PROPERTY CARD - Enhanced
========================================= */
    .property-card {
        flex: 0 0 calc((100% - 60px) / 4);
        position: relative;
        height: 280px;
        overflow: hidden;
        border-radius: var(--radius-card);
        display: block;
        text-decoration: none;
        background: #f5f7fa;
        box-shadow: var(--shadow-card);
        transition: var(--transition-smooth);
        transform: translateY(0);
        will-change: transform;
    }

    .property-card::after {
        content: '';
        position: absolute;
        inset: 0;
        background: linear-gradient(to top, rgba(0, 0, 0, 0.5) 0%, transparent 50%);
        opacity: 0;
        transition: opacity 0.5s ease;
        z-index: 1;
        border-radius: var(--radius-card);
    }

    .property-card:hover {
        transform: translateY(-10px) scale(1.01);
        box-shadow: var(--shadow-hover);
    }

    .property-card:hover::after {
        opacity: 1;
    }

    .property-card img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        display: block;
        transition: transform 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    }

    .property-card:hover img {
        transform: scale(1.08);
    }

    /* =========================================
   CARD OVERLAY - Glass effect
========================================= */
    .property-overlay {
        position: absolute;
        inset: 0;
        background: linear-gradient(to bottom,
                rgba(0, 0, 0, 0.15) 0%,
                transparent 40%,
                rgba(0, 0, 0, 0.55) 100%);
        z-index: 2;
        border-radius: var(--radius-card);
        transition: background 0.5s ease;
    }

    .property-card:hover .property-overlay {
        background: linear-gradient(to bottom,
                rgba(0, 0, 0, 0.25) 0%,
                transparent 30%,
                rgba(0, 0, 0, 0.7) 100%);
    }

    /* =========================================
   CARD TEXT - Enhanced
========================================= */
    .property-details {
        position: absolute;
        bottom: 24px;
        left: 20px;
        right: 20px;
        z-index: 3;
        color: #fff;
        transform: translateY(0);
        transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    }

    .property-card:hover .property-details {
        transform: translateY(-4px);
    }

    .property-details h3 {
        margin: 0;
        font-size: 16px;
        font-weight: 700;
        letter-spacing: -0.01em;
        text-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
        transition: color 0.3s ease;
    }

    .property-details .property-location {
        display: flex;
        align-items: center;
        gap: 6px;
        margin: 6px 0 0;
        font-size: 11px;
        font-weight: 400;
        opacity: 0.85;
        text-shadow: 0 1px 4px rgba(0, 0, 0, 0.2);
    }

    .property-details .property-location svg {
        width: 12px;
        height: 12px;
        fill: currentColor;
        flex-shrink: 0;
    }

    /* Badge for property type */
    .property-badge {
        position: absolute;
        top: 16px;
        right: 16px;
        z-index: 4;
        background: #1a5c6e;
        backdrop-filter: blur(4px);
        color: #fff;
        font-size: 9px;
        font-weight: 700;
        text-transform: uppercase;
        letter-spacing: 0.5px;
        padding: 4px 12px;
        border-radius: 20px;
        box-shadow: 0 4px 12px rgba(255, 92, 32, 0.3);
        transition: transform 0.3s ease, background 0.3s ease;
    }

    .property-card:hover .property-badge {
        transform: scale(1.05);
        background: var(--primary);
    }

    /* =========================================
   VIEW ALL
========================================= */
    .view-all-container {
        display: flex;
        justify-content: center;
        margin-top: 42px;
        position: relative;
        z-index: 2;
    }

    .view-all-button {
        height: 44px;
        padding: 0 8px 0 24px;
        display: inline-flex;
        align-items: center;
        gap: 18px;
        border: 2px solid var(--primary);
        border-radius: 30px;
        background: #fff;
        color: var(--primary);
        text-decoration: none;
        font-size: 12px;
        font-weight: 600;
        letter-spacing: 0.3px;
        transition: var(--transition-smooth);
        box-shadow: 0 4px 16px rgba(255, 92, 32, 0.1);
        position: relative;
        overflow: hidden;
    }

    .view-all-button::before {
        content: '';
        position: absolute;
        inset: 0;
        background: var(--primary);
        transform: scaleX(0);
        transform-origin: right;
        transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
        border-radius: 30px;
        z-index: 0;
    }

    .view-all-button:hover {
        color: #fff;
        transform: translateY(-3px);
        box-shadow: 0 8px 30px rgba(255, 92, 32, 0.3);
        border-color: var(--primary);
    }

    .view-all-button:hover::before {
        transform: scaleX(1);
        transform-origin: left;
    }

    .view-all-button span {
        position: relative;
        z-index: 1;
    }

    .view-all-button strong {
        width: 32px;
        height: 32px;
        display: flex;
        align-items: center;
        justify-content: center;
        border-radius: 50%;
        background: var(--primary);
        color: #fff;
        font-size: 16px;
        font-weight: 700;
        transition: transform 0.4s ease, background 0.3s ease;
        position: relative;
        z-index: 1;
        flex-shrink: 0;
    }

    .view-all-button:hover strong {
        transform: rotate(45deg);
        background: #fff;
        color: var(--primary);
    }

    /* =========================================
   RESPONSIVE
========================================= */
    @media (max-width: 900px) {
        .property-grid {
            gap: 16px;
        }

        .property-card {
            flex-basis: calc((100% - 16px) / 2);
        }

        .category-tabs {
            gap: 30px;
            flex-wrap: wrap;
        }

        .properties-heading h2 {
            font-size: 32px;
        }
    }

    @media (max-width: 600px) {
        .properties-section {
            padding: 40px 16px 70px;
        }

        .properties-heading h2 {
            font-size: 26px;
        }

        .properties-heading p {
            font-size: 12px;
        }

        .category-tabs {
            gap: 12px;
            /* justify-content: space-between; */
            margin-top: 32px;
        }

        .category-tab {
            font-size: 10px;
            height: 44px;
            padding: 0 6px;
            letter-spacing: 0.3px;
        }

        .category-tab .tab-icon {
            font-size: 13px;
            margin-right: 4px;
        }

        .property-grid {
            gap: 12px;
        }

        .property-card {
            flex-basis: calc((100% - 12px) / 2);
        }

        .property-card {
            height: 220px;
            border-radius: 14px;
        }

        .property-details {
            bottom: 16px;
            left: 14px;
            right: 14px;
        }

        .property-details h3 {
            font-size: 13px;
        }

        .property-details .property-location {
            font-size: 9px;
        }

        .property-badge {
            font-size: 7px;
            padding: 3px 10px;
            top: 12px;
            right: 12px;
        }

        .view-all-button {
            height: 38px;
            padding: 0 6px 0 16px;
            font-size: 10px;
            gap: 12px;
        }

        .view-all-button strong {
            width: 26px;
            height: 26px;
            font-size: 13px;
        }

        .properties-section::after {
            height: 120px;
            background-size: 800px 120px;
        }
    }

    @media (max-width: 400px) {
        .property-card {
            height: 180px;
        }

        .property-details h3 {
            font-size: 11px;
        }
    }

    /* Staggered animation for cards */
    .property-card {
        opacity: 0;
        animation: cardReveal 0.6s ease forwards;
    }

    .property-card:nth-child(1) {
        animation-delay: 0.1s;
    }

    .property-card:nth-child(2) {
        animation-delay: 0.2s;
    }

    .property-card:nth-child(3) {
        animation-delay: 0.3s;
    }

    .property-card:nth-child(4) {
        animation-delay: 0.4s;
    }

    @keyframes cardReveal {
        from {
            opacity: 0;
            transform: translateY(30px) scale(0.96);
        }

        to {
            opacity: 1;
            transform: translateY(0) scale(1);
        }
    }

    /* Glow on active category */
    .category-content.active .property-card {
        animation: cardReveal 0.6s ease forwards;
    }

    /* Smooth transition for category switch */
    .category-content {
        transition: opacity 0.3s ease, transform 0.3s ease;
    }






    /* =====================================================
   Section - 4 REVIEWS SECTION - PROFESSIONAL
===================================================== */

    .reviews-section {
        width: 100%;
        position: relative;
        overflow: hidden;
        padding: 70px 0 80px;
        background: #f8faff;
        font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    }

    /* Subtle Background Pattern */
    .reviews-section::before {
        content: '';
        position: absolute;
        top: -50%;
        right: -20%;
        width: 600px;
        height: 600px;
        background: radial-gradient(circle, rgba(255, 91, 32, 0.04) 0%, transparent 70%);
        border-radius: 50%;
        pointer-events: none;
        z-index: 0;
    }

    .reviews-section::after {
        content: '';
        position: absolute;
        bottom: -30%;
        left: -10%;
        width: 500px;
        height: 500px;
        background: radial-gradient(circle, rgba(66, 133, 244, 0.03) 0%, transparent 70%);
        border-radius: 50%;
        pointer-events: none;
        z-index: 0;
    }

    /* =====================================================
   HEADING
===================================================== */

    .reviews-heading {
        text-align: center;
        margin-bottom: 60px;
        position: relative;
        z-index: 1;
        opacity: 0;
        animation: fadeDown 0.8s ease forwards 0.2s;
    }

    @keyframes fadeDown {
        from {
            opacity: 0;
            transform: translateY(-20px);
        }

        to {
            opacity: 1;
            transform: translateY(0);
        }
    }

    .reviews-heading h2 {
        margin: 0;
        color: #151d30;
        font-size: 46px;
        line-height: 1.1;
        font-weight: 700;
        letter-spacing: -1.5px;
    }

    .reviews-heading h2 span {
        color: #1a5c6e;
        position: relative;
        display: inline-block;
    }

    .reviews-heading h2 span::after {
        content: '';
        position: absolute;
        left: 0;
        bottom: 2px;
        width: 100%;
        height: 6px;
        background: #1a5c6e;
        opacity: 0.2;
        border-radius: 3px;
    }

    .reviews-heading .heading-divider {
        width: 60px;
        height: 3px;
        background: linear-gradient(to right, #1a5c6e, #ff8a5c);
        margin: 18px auto 0;
        border-radius: 3px;
        transition: width 0.4s ease;
    }

    .reviews-heading:hover .heading-divider {
        width: 100px;
    }

    .reviews-heading p {
        margin: 22px auto 0;
        max-width: 620px;
        color: #687286;
        font-size: 17px;
        line-height: 1.6;
        font-weight: 400;
    }

    /* =====================================================
   SLIDER CONTAINER
===================================================== */

    .reviews-slider {
        width: 100%;
        overflow: hidden;
        position: relative;
        z-index: 1;
        padding: 10px 0;
    }

    /* Gradient Fade Edges */
    .reviews-slider::before,
    .reviews-slider::after {
        content: '';
        position: absolute;
        top: 0;
        width: 120px;
        height: 100%;
        z-index: 2;
        pointer-events: none;
    }

    .reviews-slider::before {
        left: 0;
        background: linear-gradient(to right, #f8faff, transparent);
    }

    .reviews-slider::after {
        right: 0;
        background: linear-gradient(to left, #f8faff, transparent);
    }

    /* =====================================================
   TRACK
===================================================== */

    .reviews-track {
        display: flex;
        width: max-content;
        gap: 26px;
        animation: reviewsScroll 40s linear infinite;
        will-change: transform;
    }

    /* Pause on hover */
    .reviews-slider:hover .reviews-track {
        animation-play-state: paused;
    }

    /* =====================================================
   CARD
===================================================== */

    .review-card {
        width: 330px;
        min-height: 280px;
        flex-shrink: 0;
        padding: 28px 30px;
        background: #ffffff;
        border: 1px solid rgba(200, 215, 255, 0.4);
        border-radius: 18px;
        box-shadow: 0 4px 20px rgba(50, 75, 130, 0.06);
        transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1),
            box-shadow 0.4s ease,
            border-color 0.4s ease;
        position: relative;
        cursor: default;
    }

    .review-card:hover {
        transform: translateY(-6px) scale(1.01);
        box-shadow: 0 16px 48px rgba(50, 75, 130, 0.12);
        border-color: rgba(255, 91, 32, 0.2);
    }

    /* Subtle card accent line */
    .review-card::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 3px;
        background: linear-gradient(to right, #1a5c6e, #ff8a5c, #ffb088);
        border-radius: 18px 18px 0 0;
        opacity: 0;
        transition: opacity 0.4s ease;
    }

    .review-card:hover::before {
        opacity: 1;
    }

    /* =====================================================
   CARD HEADER
===================================================== */

    .review-header {
        display: flex;
        align-items: center;
        justify-content: space-between;
    }

    .review-user {
        display: flex;
        align-items: center;
        gap: 14px;
    }

    .review-user .avatar {
        width: 52px;
        height: 52px;
        border-radius: 50%;
        object-fit: cover;
        border: 2px solid #f0f4ff;
        transition: border-color 0.3s ease, transform 0.3s ease;
        background: #eef2f7;
    }

    .review-card:hover .review-user .avatar {
        border-color: #1a5c6e;
        transform: scale(1.04);
    }

    .review-user .user-info h3 {
        margin: 0;
        color: #172035;
        font-size: 17px;
        font-weight: 700;
        line-height: 1.2;
    }

    .review-user .user-info .review-time {
        display: block;
        margin-top: 4px;
        color: #8a95a8;
        font-size: 12px;
        font-weight: 400;
    }

    /* =====================================================
   GOOGLE ICON - Enhanced
===================================================== */

    .google-icon {
        width: 30px;
        height: 30px;
        display: flex;
        align-items: center;
        justify-content: center;
        background: #f8faff;
        border-radius: 50%;
        transition: transform 0.3s ease, box-shadow 0.3s ease;
        flex-shrink: 0;
    }

    .review-card:hover .google-icon {
        transform: scale(1.1);
        box-shadow: 0 4px 12px rgba(66, 133, 244, 0.2);
    }

    .google-icon span {
        font-family: Arial, sans-serif;
        font-size: 20px;
        font-weight: 700;
        background: linear-gradient(135deg, #4285f4 0%, #0d6251 50%, #fbbc05 100%);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
        text-shadow: none;
        line-height: 1;
    }

    /* =====================================================
   STARS
===================================================== */

    .review-stars {
        display: flex;
        gap: 4px;
        margin-top: 16px;
    }

    .review-stars span {
        color: #ffb400;
        font-size: 22px;
        line-height: 1;
        transition: transform 0.2s ease;
    }

    .review-card:hover .review-stars span {
        animation: starPop 0.3s ease forwards;
    }

    .review-stars span:nth-child(1) {
        animation-delay: 0s;
    }

    .review-stars span:nth-child(2) {
        animation-delay: 0.05s;
    }

    .review-stars span:nth-child(3) {
        animation-delay: 0.1s;
    }

    .review-stars span:nth-child(4) {
        animation-delay: 0.15s;
    }

    .review-stars span:nth-child(5) {
        animation-delay: 0.2s;
    }

    @keyframes starPop {
        0% {
            transform: scale(1);
        }

        50% {
            transform: scale(1.3);
        }

        100% {
            transform: scale(1);
        }
    }

    /* =====================================================
   REVIEW TEXT
===================================================== */

    .review-text {
        margin: 18px 0 0;
        color: #1e273a;
        font-size: 15px;
        line-height: 1.65;
        font-weight: 400;
        display: -webkit-box;
        -webkit-line-clamp: 4;
        -webkit-box-orient: vertical;
        overflow: hidden;
    }

    /* =====================================================
   QUOTE MARKER
===================================================== */

    .review-text::before {
        content: '"';
        color: #1a5c6e;
        /* font-size: 28px; */
        font-weight: 700;
        opacity: 0.3;
        margin-right: 4px;
    }

    /* =====================================================
   INFINITE SCROLL ANIMATION
===================================================== */

    @keyframes reviewsScroll {
        0% {
            transform: translateX(0);
        }

        100% {
            transform: translateX(-50%);
        }
    }

    /* =====================================================
   RESPONSIVE - TABLET
===================================================== */

    @media (max-width: 1024px) {
        .reviews-heading h2 {
            font-size: 38px;
        }

        .review-card {
            width: 300px;
            min-height: 265px;
            padding: 24px 26px;
        }

        .reviews-slider::before,
        .reviews-slider::after {
            width: 60px;
        }
    }

    /* =====================================================
   RESPONSIVE - MOBILE
===================================================== */

    @media (max-width: 700px) {
        .reviews-section {
            padding: 50px 0 60px;
        }

        .reviews-heading {
            padding: 0 20px;
            margin-bottom: 40px;
        }

        .reviews-heading h2 {
            font-size: 30px;
            letter-spacing: -1px;
        }

        .reviews-heading p {
            font-size: 14px;
            padding: 0 10px;
        }

        .reviews-heading p br {
            display: none;
        }

        .reviews-track {
            gap: 16px;
            animation-duration: 30s;
        }

        .review-card {
            width: 280px;
            min-height: 250px;
            padding: 20px 22px;
            border-radius: 14px;
        }

        .review-user .avatar {
            width: 44px;
            height: 44px;
        }

        .review-user .user-info h3 {
            font-size: 15px;
        }

        .review-user .user-info .review-time {
            font-size: 11px;
        }

        .google-icon {
            width: 26px;
            height: 26px;
        }

        .google-icon span {
            font-size: 17px;
        }

        .review-stars span {
            font-size: 18px;
        }

        .review-text {
            font-size: 13px;
            line-height: 1.6;
            -webkit-line-clamp: 5;
        }

        .review-text::before {
            font-size: 22px;
        }

        .reviews-slider::before,
        .reviews-slider::after {
            width: 30px;
        }
    }

    @media (max-width: 400px) {
        .review-card {
            width: 250px;
            min-height: 230px;
            padding: 16px 18px;
        }

        .reviews-heading h2 {
            font-size: 26px;
        }

        .review-user .avatar {
            width: 38px;
            height: 38px;
        }

        .review-user .user-info h3 {
            font-size: 13px;
        }

        .review-stars span {
            font-size: 16px;
        }

        .review-text {
            font-size: 12px;
            -webkit-line-clamp: 4;
        }
    }

    /* =====================================================
   REDUCED MOTION PREFERENCE
===================================================== */

    @media (prefers-reduced-motion: reduce) {
        .reviews-track {
            animation-duration: 80s;
        }

        .review-card {
            transition: none;
        }

        .review-card:hover {
            transform: none;
            box-shadow: 0 4px 20px rgba(50, 75, 130, 0.06);
        }

        .review-card:hover .review-user .avatar {
            transform: none;
        }

        .review-card:hover .google-icon {
            transform: none;
        }

        .review-stars span {
            animation: none !important;
        }
    }





    /* =====================================================
 Section - 5  Our Trusted Developer Partners
===================================================== */

    .developers-section {
        width: 100%;
        position: relative;
        overflow: hidden;
        padding: 70px 0 70px;
        /* background: #faf6f3; */
        font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    }

    /* Animated Background Pattern */
    .developers-section::before {
        content: '';
        position: absolute;
        top: -30%;
        right: -10%;
        width: 500px;
        height: 500px;
        background: radial-gradient(circle, rgba(26, 92, 110, 0.04) 0%, transparent 70%);
        border-radius: 50%;
        pointer-events: none;
        z-index: 0;
        animation: floatOrb 15s ease-in-out infinite alternate;
    }

    .developers-section::after {
        content: '';
        position: absolute;
        bottom: -20%;
        left: -5%;
        width: 400px;
        height: 400px;
        background: radial-gradient(circle, rgba(255, 91, 32, 0.03) 0%, transparent 70%);
        border-radius: 50%;
        pointer-events: none;
        z-index: 0;
        animation: floatOrb 20s ease-in-out infinite alternate-reverse;
    }

    @keyframes floatOrb {
        0% {
            transform: translate(0, 0) scale(1);
        }

        100% {
            transform: translate(30px, -20px) scale(1.1);
        }
    }

    /* =====================================================
   HEADING
===================================================== */

    .developers-heading {
        max-width: 760px;
        margin: 0 auto;
        text-align: center;
        position: relative;
        z-index: 1;
        opacity: 0;
        animation: fadeUp 0.8s ease forwards 0.2s;
    }

    @keyframes fadeUp {
        from {
            opacity: 0;
            transform: translateY(30px);
        }

        to {
            opacity: 1;
            transform: translateY(0);
        }
    }

    .developers-heading h2 {
        margin: 0;
        color: #292929;
        font-size: 44px;
        line-height: 1.1;
        font-weight: 600;
        letter-spacing: -1.5px;
    }

    .developers-heading h2 span {
        color: #1a5c6e;
        position: relative;
        display: inline-block;
    }

    .developers-heading h2 span::after {
        content: '';
        position: absolute;
        left: 0;
        bottom: 2px;
        width: 100%;
        height: 5px;
        background: #1a5c6e;
        opacity: 0.2;
        border-radius: 3px;
    }

    .developers-subtitle {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 15px;
        margin-top: 18px;
        color: #1a5c6e;
        font-size: 16px;
        font-weight: 600;
        letter-spacing: 0.5px;
    }

    .developers-subtitle span {
        width: 35px;
        height: 2px;
        background: #1a5c6e;
        border-radius: 2px;
        transition: width 0.4s ease;
    }

    .developers-heading:hover .developers-subtitle span {
        width: 60px;
    }

    .developers-heading p {
        margin: 20px auto 0;
        max-width: 700px;
        color: #687080;
        font-size: 15px;
        line-height: 1.7;
        font-weight: 400;
    }

    /* =====================================================
   FEATURES
===================================================== */

    .developer-features {
        max-width: 1200px;
        margin: 50px auto 55px;
        padding: 0 20px;
        display: grid;
        grid-template-columns: repeat(5, 1fr);
        gap: 25px;
        position: relative;
        z-index: 1;
    }

    .developer-feature {
        text-align: center;
        padding: 20px 10px;
        border-radius: 16px;
        background: rgba(255, 255, 255, 0.5);
        backdrop-filter: blur(4px);
        transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1),
            box-shadow 0.4s ease,
            background 0.4s ease;
        opacity: 0;
        animation: featureReveal 0.6s ease forwards;
    }

    .developer-feature:nth-child(1) {
        animation-delay: 0.1s;
    }

    .developer-feature:nth-child(2) {
        animation-delay: 0.2s;
    }

    .developer-feature:nth-child(3) {
        animation-delay: 0.3s;
    }

    .developer-feature:nth-child(4) {
        animation-delay: 0.4s;
    }

    .developer-feature:nth-child(5) {
        animation-delay: 0.5s;
    }

    @keyframes featureReveal {
        from {
            opacity: 0;
            transform: translateY(20px) scale(0.95);
        }

        to {
            opacity: 1;
            transform: translateY(0) scale(1);
        }
    }

    .developer-feature:hover {
        transform: translateY(-6px) scale(1.02);
        box-shadow: 0 12px 40px rgba(26, 92, 110, 0.10);
        background: rgba(255, 255, 255, 0.85);
    }

    .feature-icon {
        width: 56px;
        height: 56px;
        margin: 0 auto 14px;
        display: flex;
        align-items: center;
        justify-content: center;
        background: rgba(26, 92, 110, 0.08);
        border-radius: 50%;
        color: #1a5c6e;
        font-size: 26px;
        transition: transform 0.4s ease, background 0.4s ease;
    }

    .developer-feature:hover .feature-icon {
        transform: scale(1.1) rotate(-5deg);
        background: rgba(26, 92, 110, 0.15);
    }

    .developer-feature h3 {
        margin: 0;
        color: #303030;
        font-size: 15px;
        font-weight: 600;
    }

    .developer-feature p {
        margin: 10px 0 0;
        color: #777c87;
        font-size: 12px;
        line-height: 1.55;
    }

    /* =====================================================
   LOGO SLIDER
===================================================== */

    .developer-slider {
        width: 100%;
        overflow: hidden;
        position: relative;
        z-index: 1;
        padding: 10px 0;
    }

    /* Gradient Fade Edges */
    .developer-slider::before,
    .developer-slider::after {
        content: '';
        position: absolute;
        top: 0;
        width: 100px;
        height: 100%;
        z-index: 2;
        pointer-events: none;
    }

    .developer-slider::before {
        left: 0;
        background: linear-gradient(to right, #faf6f3, transparent);
    }

    .developer-slider::after {
        right: 0;
        background: linear-gradient(to left, #faf6f3, transparent);
    }

    /* =====================================================
   TRACK
===================================================== */

    .developer-track {
        display: flex;
        width: max-content;
        gap: 20px;
        animation: developerScroll 40s linear infinite;
        will-change: transform;
    }

    /* Pause on hover */
    .developer-slider:hover .developer-track {
        animation-play-state: paused;
    }

    /* =====================================================
   LOGO CARD - Enhanced
===================================================== */

    .developer-logo-card {
        width: 195px;
        height: 105px;
        flex-shrink: 0;
        display: flex;
        align-items: center;
        justify-content: center;
        background: #ffffff;
        border-radius: 16px;
        text-decoration: none;
        overflow: hidden;
        box-shadow: 0 4px 16px rgba(0, 0, 0, 0.04);
        border: 1px solid rgba(26, 92, 110, 0.06);
        transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1),
            box-shadow 0.4s ease,
            border-color 0.4s ease;
        position: relative;
    }

    /* Logo card accent line */
    .developer-logo-card::after {
        content: '';
        position: absolute;
        bottom: 0;
        left: 50%;
        transform: translateX(-50%) scaleX(0);
        width: 60%;
        height: 3px;
        background: linear-gradient(to right, #1a5c6e, #2a8a9e);
        border-radius: 3px 3px 0 0;
        transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    }

    .developer-logo-card:hover {
        transform: translateY(-8px) scale(1.02);
        box-shadow: 0 16px 48px rgba(26, 92, 110, 0.12);
        border-color: rgba(26, 92, 110, 0.15);
    }

    .developer-logo-card:hover::after {
        transform: translateX(-50%) scaleX(1);
    }

    /* Logo image with hover effect */
    .developer-logo-card img {
        width: 78%;
        height: 70%;
        object-fit: contain;
        display: block;
        filter: grayscale(0.2);
        transition: filter 0.4s ease, transform 0.4s ease;
    }

    .developer-logo-card:hover img {
        filter: grayscale(0);
        transform: scale(1.04);
    }

    /* Logo card tooltip */
    .developer-logo-card .logo-tooltip {
        position: absolute;
        bottom: -30px;
        left: 50%;
        transform: translateX(-50%) scale(0.8);
        background: #1a5c6e;
        color: #fff;
        font-size: 10px;
        font-weight: 600;
        padding: 3px 14px;
        border-radius: 20px;
        opacity: 0;
        transition: opacity 0.3s ease, transform 0.3s ease;
        white-space: nowrap;
        pointer-events: none;
    }

    .developer-logo-card:hover .logo-tooltip {
        opacity: 1;
        transform: translateX(-50%) scale(1);
    }

    /* =====================================================
   INFINITE SCROLL
===================================================== */

    @keyframes developerScroll {
        from {
            transform: translateX(0);
        }

        to {
            transform: translateX(-50%);
        }
    }

    /* =====================================================
   RESPONSIVE - TABLET
===================================================== */

    @media (max-width: 1000px) {
        .developers-heading {
            padding: 0 25px;
        }

        .developers-heading h2 {
            font-size: 38px;
        }

        .developer-features {
            grid-template-columns: repeat(3, 1fr);
            row-gap: 30px;
            gap: 15px;
        }

        .developer-feature {
            padding: 15px 8px;
        }

        .developer-slider::before,
        .developer-slider::after {
            width: 50px;
        }
    }

    /* =====================================================
   RESPONSIVE - MOBILE
===================================================== */

    @media (max-width: 600px) {
        .developers-section {
            padding: 45px 0 50px;
        }

        .developers-heading {
            padding: 0 20px;
        }

        .developers-heading h2 {
            font-size: 30px;
            letter-spacing: -1px;
        }

        .developers-subtitle {
            font-size: 12px;
            gap: 10px;
        }

        .developers-subtitle span {
            width: 20px;
        }

        .developers-heading p {
            font-size: 13px;
            padding: 0 5px;
        }

        .developer-features {
            grid-template-columns: repeat(2, 1fr);
            gap: 15px 10px;
            padding: 0 15px;
            margin: 35px auto 40px;
        }

        .developer-feature {
            padding: 14px 8px;
            border-radius: 12px;
        }

        .feature-icon {
            width: 44px;
            height: 44px;
            font-size: 20px;
            margin-bottom: 10px;
        }

        .developer-feature h3 {
            font-size: 13px;
        }

        .developer-feature p {
            font-size: 10px;
            line-height: 1.4;
        }

        .developer-logo-card {
            width: 155px;
            height: 85px;
            border-radius: 12px;
        }

        .developer-track {
            gap: 14px;
            animation-duration: 30s;
        }

        .developer-slider::before,
        .developer-slider::after {
            width: 30px;
        }

        .developer-logo-card img {
            width: 72%;
            height: 65%;
        }

        .developer-logo-card .logo-tooltip {
            display: none;
        }
    }

    @media (max-width: 400px) {
        .developer-logo-card {
            width: 130px;
            height: 72px;
        }

        .developer-track {
            gap: 10px;
        }

        .developer-features {
            gap: 10px 8px;
        }

        .developer-feature {
            padding: 10px 6px;
        }

        .feature-icon {
            width: 38px;
            height: 38px;
            font-size: 17px;
        }

        .developer-feature h3 {
            font-size: 11px;
        }
    }

    /* =====================================================
   REDUCED MOTION PREFERENCE
===================================================== */

    @media (prefers-reduced-motion: reduce) {
        .developer-track {
            animation-duration: 80s;
        }

        .developer-feature {
            opacity: 1;
            animation: none;
        }

        .developer-feature:hover {
            transform: none;
        }

        .developer-logo-card {
            transition: none;
        }

        .developer-logo-card:hover {
            transform: none;
            box-shadow: 0 4px 16px rgba(0, 0, 0, 0.04);
        }

        .developer-logo-card:hover img {
            transform: none;
        }

        .developers-section::before,
        .developers-section::after {
            animation: none;
        }

        .developers-heading {
            opacity: 1;
            animation: none;
        }
    }









    /* ============================================================================
  Section - 1  Find Your Ideal Property With Us
================================================================================== */

    .find-property-section {

        width: 100%;

        position: relative;

        overflow: hidden;

        padding:
            75px 20px 80px;

        background: #fffaf5;

    }


    /* =====================================================
   CONTAINER
===================================================== */

    .find-property-container {

        max-width: 1290px;

        margin: 0 auto;

        display: grid;

        grid-template-columns:
            1fr 1fr;

        gap: 55px;

        align-items: center;

    }


    /* =====================================================
   LEFT CONTENT
===================================================== */

    .find-property-content {

        padding-left: 0;

    }


    .find-property-content h2 {

        margin: 0;

        color: #20293b;

        font-size: 48px;

        line-height: 1.08;

        font-weight: 600;

        letter-spacing: -1.8px;

    }


    .find-property-content h2 span {

        display: block;

        color: #1a5c6e;

        margin-top: 4px;

    }


    /* =====================================================
   ORANGE LINE
===================================================== */

    .orange-line {

        width: 45px;

        height: 3px;

        margin-top: 25px;

        background: #1a5c6e;

    }


    /* =====================================================
   DESCRIPTION
===================================================== */

    .find-property-description {

        max-width: 550px;

        margin:
            17px 0 30px;

        color: #687286;

        font-size: 15px;

        line-height: 1.7;

    }


    .find-property-description strong {

        color: #1a5c6e;

        font-weight: 700;

    }


    /* =====================================================
   FEATURE GRID
===================================================== */

    .property-features {

        max-width: 530px;

        display: grid;

        grid-template-columns:
            repeat(2, 1fr);

        gap: 18px;

    }


    /* =====================================================
   FEATURE CARD
===================================================== */

    .property-feature-card {

        min-height: 140px;

        padding:
            14px;

        background: #ffffff;

        border-radius: 15px;

        box-shadow:
            0 8px 25px rgba(30, 40, 60, .07);

        transition:
            transform .25s ease,
            box-shadow .25s ease;

    }


    .property-feature-card:hover {

        transform:
            translateY(-4px);

        box-shadow:
            0 14px 30px rgba(30, 40, 60, .11);

    }


    /* =====================================================
   FEATURE ICON
===================================================== */

    .feature-small-icon {

        width: 28px;

        height: 28px;

        display: flex;

        align-items: center;

        justify-content: center;

        border-radius: 8px;

        background: #fff5ed;

        color: #1a5c6e;

        font-size: 17px;

        margin-bottom: 10px;

    }


    /* =====================================================
   FEATURE TITLE
===================================================== */

    .property-feature-card h3 {

        margin: 0;

        color: #263044;

        font-size: 15px;

        font-weight: 700;

    }


    /* =====================================================
   FEATURE TEXT
===================================================== */

    .property-feature-card p {

        margin:
            10px 0 0;

        color: #737b8b;

        font-size: 12px;

        line-height: 1.45;

    }


    /* =====================================================
   RIGHT VISUAL
===================================================== */

    .find-property-visual {

        position: relative;

        min-height: 500px;

    }


    /* =====================================================
   IMAGE
===================================================== */

    .property-image-wrapper {

        position: absolute;

        top: 0;

        right: 0;

        width: 100%;

        height: 440px;

        overflow: hidden;

        border-radius: 18px;

    }


    .property-image-wrapper img {

        width: 100%;

        height: 100%;

        display: block;

        object-fit: cover;

    }


    /* =====================================================
   DIAGONAL WHITE DIVIDER
===================================================== */

    .diagonal-divider {

        position: absolute;

        top: -20px;

        left: 55%;

        width: 70px;

        height: 520px;

        background: #ffffff;

        transform:
            rotate(30deg);

        transform-origin: center;

        z-index: 3;

    }


    /* =====================================================
   ADVISOR CARD
===================================================== */

    .advisor-card {

        position: absolute;

        z-index: 5;

        left: 38px;

        right: 38px;

        bottom: 0;

        min-height: 100px;

        padding:
            17px 18px;

        display: flex;

        align-items: center;

        gap: 15px;

        background: #202b3d;

        border-radius: 17px;

        box-shadow:
            0 15px 35px rgba(0, 0, 0, .18);

    }


    /* =====================================================
   AVATAR
===================================================== */

    .advisor-avatar {

        width: 45px;

        height: 45px;

        flex-shrink: 0;

        border-radius: 50%;

        background: #ffffff;

        display: flex;

        align-items: center;

        justify-content: center;

    }


    .advisor-avatar span {

        color: #1a5c6e;

        font-size: 24px;

    }


    /* =====================================================
   ADVISOR INFO
===================================================== */

    .advisor-info {

        flex: 1;

    }


    .advisor-info>span {

        display: block;

        color: #e4e7ec;

        font-size: 12px;

    }


    .advisor-info strong {

        display: block;

        margin-top: 2px;

        color: #1a5c6e;

        font-size: 16px;

    }


    .advisor-info p {

        margin:
            5px 0 0;

        color: #aeb5c0;

        font-size: 10px;

    }


    /* =====================================================
   SEND ENQUIRY
===================================================== */

    .send-enquiry {

        min-width: 135px;

        height: 42px;

        padding:
            0 18px;

        display: flex;

        align-items: center;

        justify-content: center;

        border-radius: 24px;

        background: #1a5c6e;

        color: white;

        text-decoration: none;

        font-size: 11px;

        font-weight: 800;

        transition: .25s;

    }


    .send-enquiry:hover {

        background: #e94e16;

        transform:
            translateY(-2px);

    }


    /* =====================================================
   TABLET
===================================================== */

    @media (max-width: 1000px) {

        .find-property-container {

            grid-template-columns:
                1fr;

        }

        .find-property-content {

            text-align: center;

        }

        .orange-line {

            margin-left: auto;
            margin-right: auto;

        }

        .find-property-description {

            margin-left: auto;
            margin-right: auto;

        }

        .property-features {

            margin-left: auto;
            margin-right: auto;

        }

        .find-property-visual {

            min-height: 480px;

        }

    }


    /* =====================================================
   MOBILE
===================================================== */

    @media (max-width: 600px) {

        .find-property-section {

            padding:
                45px 15px 60px;

        }

        .find-property-content h2 {

            font-size: 34px;

        }

        .find-property-description {

            font-size: 13px;

        }

        .property-features {

            grid-template-columns:
                1fr;

        }

        .find-property-visual {

            min-height: 400px;

        }

        .property-image-wrapper {

            height: 330px;

        }

        .diagonal-divider {

            display: none;

        }

        .advisor-card {

            left: 10px;

            right: 10px;

            padding: 13px;

        }

        .advisor-info strong {

            font-size: 13px;

        }

        .send-enquiry {

            min-width: 105px;

            height: 38px;

            font-size: 9px;

        }

    }






    /* =====================================================
     Section - 1  FAQ SECTION 
===================================================== */

    .faq-section {
        width: 100%;
        position: relative;
        overflow: hidden;
        padding: 70px 20px 80px;
        background: #f5f7fc;
        font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    }

    /* Animated Background */
    .faq-section::before {
        content: '';
        position: absolute;
        top: -40%;
        right: -10%;
        width: 600px;
        height: 600px;
        background: radial-gradient(circle, rgba(26, 92, 110, 0.04) 0%, transparent 70%);
        border-radius: 50%;
        pointer-events: none;
        z-index: 0;
        animation: floatOrb 18s ease-in-out infinite alternate;
    }

    .faq-section::after {
        content: '';
        position: absolute;
        bottom: -30%;
        left: -5%;
        width: 500px;
        height: 500px;
        background: radial-gradient(circle, rgba(255, 91, 32, 0.03) 0%, transparent 70%);
        border-radius: 50%;
        pointer-events: none;
        z-index: 0;
        animation: floatOrb 22s ease-in-out infinite alternate-reverse;
    }

    @keyframes floatOrb {
        0% {
            transform: translate(0, 0) scale(1);
        }

        100% {
            transform: translate(40px, -30px) scale(1.1);
        }
    }

    /* =====================================================
   CONTAINER
===================================================== */

    .faq-container {
        max-width: 1260px;
        margin: 0 auto;
        display: grid;
        grid-template-columns: 42% 58%;
        gap: 50px;
        position: relative;
        z-index: 1;
    }

    /* =====================================================
   LEFT SIDE
===================================================== */

    .faq-left {
        position: relative;
        min-height: 580px;
        padding-left: 10px;
        opacity: 0;
        animation: slideInLeft 0.8s ease forwards 0.2s;
    }

    @keyframes slideInLeft {
        from {
            opacity: 0;
            transform: translateX(-30px);
        }

        to {
            opacity: 1;
            transform: translateX(0);
        }
    }

    .faq-left h2 {
        margin: 0;
        color: #111111;
        font-size: 50px;
        line-height: 1.05;
        font-weight: 800;
        letter-spacing: -2px;
    }

    .faq-left h2 span {
        color: #1a5c6e;
        position: relative;
        display: inline-block;
    }

    .faq-left h2 span::after {
        content: '';
        position: absolute;
        left: 0;
        bottom: 3px;
        width: 100%;
        height: 5px;
        background: #1a5c6e;
        opacity: 0.15;
        border-radius: 3px;
    }

    /* =====================================================
   VIEW ALL BUTTON
===================================================== */

    .faq-view-all {
        display: inline-flex;
        align-items: center;
        gap: 10px;
        margin-top: 28px;
        padding: 10px 24px 10px 20px;
        color: #fff;
        background: #1a5c6e;
        border-radius: 30px;
        text-decoration: none;
        font-size: 13px;
        font-weight: 600;
        transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1),
            box-shadow 0.3s ease,
            background 0.3s ease;
        box-shadow: 0 4px 16px rgba(26, 92, 110, 0.2);
    }

    .faq-view-all:hover {
        transform: translateY(-3px);
        box-shadow: 0 8px 30px rgba(26, 92, 110, 0.3);
        background: #0e4a5a;
    }

    .faq-view-all .arrow {
        display: inline-block;
        transition: transform 0.3s ease;
        font-size: 16px;
    }

    .faq-view-all:hover .arrow {
        transform: translateX(4px);
    }

    /* =====================================================
   ILLUSTRATION
===================================================== */

    .faq-illustration {
        position: absolute;
        left: 0;
        bottom: 0;
        width: 390px;
        opacity: 0;
        animation: fadeUp 1s ease forwards 0.6s;
    }

    @keyframes fadeUp {
        from {
            opacity: 0;
            transform: translateY(20px);
        }

        to {
            opacity: 1;
            transform: translateY(0);
        }
    }

    .faq-illustration img {
        width: 100%;
        height: auto;
        display: block;
        border-radius: 12px;
        box-shadow: 0 8px 30px rgba(0, 0, 0, 0.06);
        transition: transform 0.5s ease, box-shadow 0.5s ease;
    }

    .faq-illustration:hover img {
        transform: scale(1.02);
        box-shadow: 0 12px 40px rgba(0, 0, 0, 0.10);
    }

    /* =====================================================
   RIGHT SIDE
===================================================== */

    .faq-right {
        display: flex;
        flex-direction: column;
        gap: 16px;
    }

    /* =====================================================
   FAQ ITEM
===================================================== */

    .faq-item {
        background: #ffffff;
        border-radius: 12px;
        overflow: hidden;
        box-shadow: 0 2px 12px rgba(30, 40, 60, 0.04);
        border: 1px solid rgba(26, 92, 110, 0.06);
        transition: box-shadow 0.4s ease, border-color 0.4s ease, transform 0.3s ease;
        opacity: 0;
        animation: itemReveal 0.5s ease forwards;
    }

    .faq-item:nth-child(1) {
        animation-delay: 0.1s;
    }

    .faq-item:nth-child(2) {
        animation-delay: 0.2s;
    }

    .faq-item:nth-child(3) {
        animation-delay: 0.3s;
    }

    .faq-item:nth-child(4) {
        animation-delay: 0.4s;
    }

    .faq-item:nth-child(5) {
        animation-delay: 0.5s;
    }

    .faq-item:nth-child(6) {
        animation-delay: 0.6s;
    }

    @keyframes itemReveal {
        from {
            opacity: 0;
            transform: translateY(15px);
        }

        to {
            opacity: 1;
            transform: translateY(0);
        }
    }

    .faq-item:hover {
        box-shadow: 0 6px 24px rgba(26, 92, 110, 0.08);
        border-color: rgba(26, 92, 110, 0.12);
    }

    .faq-item.active {
        border-color: rgba(26, 92, 110, 0.2);
        box-shadow: 0 8px 30px rgba(26, 92, 110, 0.08);
    }

    /* =====================================================
   QUESTION BUTTON
===================================================== */

    .faq-question {
        width: 100%;
        min-height: 68px;
        padding: 0 24px 0 26px;
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 20px;
        border: none;
        background: transparent;
        color: #25314a;
        text-align: left;
        font-family: inherit;
        font-size: 15px;
        font-weight: 600;
        line-height: 1.4;
        cursor: pointer;
        transition: color 0.3s ease, background 0.3s ease;
        position: relative;
    }

    .faq-question:hover {
        color: #1a5c6e;
    }

    .faq-item.active .faq-question {
        color: #1a5c6e;
    }

    /* =====================================================
   ICON - Animated
===================================================== */

    .faq-icon {
        flex-shrink: 0;
        flex-basis: 32px;
        width: 32px;
        height: 32px;
        display: flex;
        align-items: center;
        justify-content: center;
        color: #1a5c6e;
        font-size: 22px;
        font-weight: 300;
        line-height: 1;
        text-align: center;
        background: rgba(26, 92, 110, 0.06);
        border-radius: 50%;
        transition: background 0.3s ease,
            color 0.3s ease;
    }

    .faq-item.active .faq-icon {
        background: #1a5c6e;
        color: #fff;
    }

    /* =====================================================
   ANSWER - Smooth Collapse
===================================================== */

    .faq-answer {
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94),
            padding 0.4s ease,
            opacity 0.3s ease;
        opacity: 0;
    }

    .faq-item.active .faq-answer {
        max-height: 300px;
        opacity: 1;
    }

    .faq-answer p {
        margin: 0;
        padding: 0 26px 0 26px;
        color: #667187;
        font-size: 14px;
        line-height: 1.7;
        font-weight: 400;
    }

    .faq-item.active .faq-answer p {
        padding: 0 26px 24px 26px;
    }

    /* =====================================================
   RESPONSIVE - TABLET
===================================================== */

    @media (max-width: 1024px) {
        .faq-container {
            grid-template-columns: 1fr;
            gap: 40px;
        }

        .faq-left {
            min-height: auto;
            text-align: center;
            padding-left: 0;
        }

        .faq-left h2 {
            font-size: 42px;
        }

        .faq-illustration {
            position: relative;
            /* left: 50%; */
            transform: translateX(-50%);
            bottom: auto;
            margin-top: 30px;
            width: fit-content;
        }

        .faq-illustration img {
            border-radius: 12px;
        }

        .faq-view-all {
            margin-top: 22px;
        }

        .faq-right {
            gap: 14px;
        }
    }

    /* =====================================================
   RESPONSIVE - MOBILE
===================================================== */

    @media (max-width: 600px) {
        .faq-section {
            padding: 45px 15px 55px;
        }

        .faq-left {
            min-height: auto;
            padding: 0 5px;
        }

        .faq-left h2 {
            font-size: 32px;
            letter-spacing: -1px;
            line-height: 1.1;
        }

        .faq-left h2 br {
            display: none;
        }

        .faq-view-all {
            font-size: 12px;
            padding: 8px 18px 8px 16px;
        }

        .faq-illustration {
            width: 240px;
            margin-top: 25px;
            margin-bottom: 10px;
        }

        .faq-right {
            gap: 12px;
        }

        .faq-question {
            min-height: 56px;
            padding: 0 14px 0 16px;
            font-size: 13px;
            font-weight: 600;
        }

        /* .faq-icon {
        width: 26px;
        height: 26px;
        font-size: 22px;
    } */

        .faq-answer p {
            padding: 0 16px;
            font-size: 13px;
            line-height: 1.6;
        }

        .faq-item.active .faq-answer p {
            padding: 0 16px 18px 16px;
        }

        .faq-item {
            border-radius: 10px;
        }

        .faq-question:hover .faq-icon {
            transform: rotate(0deg);
        }

        .faq-item.active .faq-icon {
            transform: none;
        }
    }

    @media (max-width: 400px) {
        .faq-left h2 {
            font-size: 28px;
        }

        .faq-illustration {
            width: fit-content;
        }

        .faq-question {
            font-size: 12px;
            min-height: 50px;
            padding: 0 10px 0 14px;
        }

        /* .faq-icon {
        width: 22px;
        height: 22px;
        font-size: 18px;
    } */

        .faq-answer p {
            font-size: 12px;
        }
    }

    /* =====================================================
   REDUCED MOTION PREFERENCE
===================================================== */

    @media (prefers-reduced-motion: reduce) {

        .faq-section::before,
        .faq-section::after {
            animation: none;
        }

        .faq-left {
            opacity: 1;
            animation: none;
        }

        .faq-illustration {
            opacity: 1;
            animation: none;
        }

        .faq-item {
            opacity: 1;
            animation: none;
        }

        .faq-answer {
            transition: max-height 0.6s ease, padding 0.3s ease;
        }

        .faq-icon {
            transition: none;
        }

        .faq-question:hover .faq-icon {
            transform: none;
        }

        .faq-item.active .faq-icon {
            transform: none;
        }

        .faq-view-all {
            transition: none;
        }

        .faq-view-all:hover {
            transform: none;
        }

        .faq-illustration:hover img {
            transform: none;
        }
    }









    /* =================================================================================
/* =================================================================================
     SERVICE PAGE 
================================================================================== 
================================================================================== */



    .service-page {
        background: var(--jacob-cream);
        color: var(--jacob-ink);
    }

    .service-page>section.scroll-reveal {
        opacity: 0;
        transform: translateY(90px);
        transition: opacity .75s ease, transform .75s cubic-bezier(.22, .61, .36, 1);
        will-change: opacity, transform;
    }

    .service-page>section.scroll-reveal:nth-of-type(3n + 2) {
        transform: translateX(-46px);
    }

    .service-page>section.scroll-reveal:nth-of-type(3n) {
        transform: translateX(46px);
    }

    .service-page>section.scroll-reveal.is-visible {
        opacity: 1;
        transform: translate3d(0, 0, 0);
    }

    @media (prefers-reduced-motion: reduce) {
        .service-page>section.scroll-reveal {
            opacity: 1;
            transform: none;
            transition: none;
        }
    }

    .jacob-hero {
        position: relative;
        overflow: hidden;
        min-height: 570px;
        display: flex;
        align-items: center;
        padding: 90px 7%;
        background: #102d37;
        color: #fff;
    }

    .jacob-hero-image {
        position: absolute;
        inset: 0;
        width: 100%;
        height: 100%;
        object-fit: cover;
        z-index: 0;
    }

    .jacob-hero::after {
        content: '';
        position: absolute;
        inset: 0;
        background: linear-gradient(90deg, rgba(8, 31, 40, .92), rgba(8, 31, 40, .28));
        z-index: 1;
    }

    .jacob-hero-content {
        position: relative;
        z-index: 2;
        width: min(720px, 100%);
    }

    .jacob-eyebrow,
    .jacob-section-label {
        color: var(--jacob-gold);
        font-size: 12px;
        font-weight: 700;
        letter-spacing: 2px;
        text-transform: uppercase;
    }

    .jacob-hero h1 {
        max-width: 760px;
        margin: 14px 0 20px;
        font-size: clamp(42px, 7vw, 82px);
        line-height: 1.02;
    }

    .jacob-hero p {
        max-width: 620px;
        margin: 0;
        color: rgba(255, 255, 255, .86);
        font-size: 18px;
        line-height: 1.7;
    }

    .jacob-actions {
        display: flex;
        flex-wrap: wrap;
        gap: 14px;
        margin-top: 30px;
    }

    .jacob-button {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        min-height: 48px;
        padding: 0 23px;
        border: 1px solid transparent;
        border-radius: 3px;
        font-size: 13px;
        font-weight: 700;
        text-decoration: none;
    }

    .jacob-button-primary {
        background: var(--jacob-gold);
        color: var(--jacob-ink);
    }

    .jacob-button-outline {
        border-color: rgba(255, 255, 255, .55);
        color: #fff;
    }

    .jacob-intro,
    .jacob-highlights,
    .jacob-gallery,
    .jacob-location {
        padding: 88px 7%;
    }

    .jacob-intro-inner,
    .jacob-location-inner {
        display: grid;
        grid-template-columns: 1.1fr .9fr;
        gap: 70px;
        max-width: 1180px;
        margin: 0 auto;
        align-items: center;
    }

    .jacob-section-title {
        margin: 12px 0 20px;
        font-size: clamp(30px, 4vw, 52px);
        line-height: 1.08;
    }

    .jacob-copy {
        color: var(--jacob-muted);
        font-size: 16px;
        line-height: 1.85;
    }

    .jacob-copy+.jacob-copy {
        margin-top: 16px;
    }

    .jacob-stat-panel {
        padding: 35px;
        border-top: 3px solid var(--jacob-gold);
        background: #fff;
        box-shadow: 0 15px 40px rgba(16, 45, 55, .1);
    }

    .jacob-stat {
        display: flex;
        justify-content: space-between;
        gap: 20px;
        padding: 18px 0;
        border-bottom: 1px solid #e7e9e6;
        color: var(--jacob-muted);
        font-size: 14px;
    }

    .jacob-stat:last-child {
        border-bottom: 0;
    }

    .jacob-stat strong {
        color: var(--jacob-ink);
        text-align: right;
    }

    .jacob-highlights {
        background: var(--jacob-teal);
        color: #fff;
    }

    .jacob-feature-banner {
        position: relative;
        width: 88%;
        max-width: 1240px;
        min-height: 330px;
        display: flex;
        align-items: center;
        justify-content: center;
        margin: 56px auto;
        padding: 55px 7%;
        border-radius: 24px;
        overflow: hidden;
        text-align: center;
        background: #102d37;
        color: #fff;
        box-shadow: 0 18px 45px rgba(8, 31, 40, .18);
    }

    .jacob-feature-banner-image {
        position: absolute;
        inset: 0;
        width: 100%;
        height: 100%;
        object-fit: cover;
        z-index: 0;
    }

    .jacob-feature-banner::after {
        content: '';
        position: absolute;
        inset: 0;
        background: linear-gradient(90deg, rgba(8, 31, 40, .9), rgba(8, 31, 40, .42));
        z-index: 1;
    }

    .jacob-feature-banner-content {
        position: relative;
        z-index: 2;
        max-width: 760px;
    }

    .jacob-feature-banner .jacob-section-label {
        display: inline-block;
        padding: 7px 18px;
        border: 1px solid rgba(255, 255, 255, .3);
        border-radius: 999px;
        background: rgba(255, 255, 255, .12);
    }

    .jacob-feature-banner h2 {
        margin: 18px 0 12px;
        font-size: clamp(30px, 4vw, 52px);
        line-height: 1.08;
    }

    .jacob-feature-banner p {
        margin: 0;
        color: rgba(255, 255, 255, .86);
        font-size: 16px;
        line-height: 1.7;
    }

    .jacob-highlights-inner,
    .jacob-gallery-inner {
        max-width: 1180px;
        margin: 0 auto;
    }

    .jacob-highlights .jacob-section-title {
        max-width: 560px;
    }

    .jacob-highlight-grid {
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        gap: 16px;
        margin-top: 40px;
    }

    .jacob-highlight {
        min-height: 215px;
        padding: 24px 20px;
        border: 1px solid rgba(255, 255, 255, .16);
        border-radius: 12px;
        background: rgba(255, 255, 255, .08);
        transition: transform .25s ease, background .25s ease;
    }

    .jacob-highlight:hover {
        transform: translateY(-5px);
        background: rgba(255, 255, 255, .14);
    }

    .jacob-highlight-icon {
        width: 52px;
        height: 52px;
        display: grid;
        place-items: center;
        margin-bottom: 18px;
        padding: 10px;
        border-radius: 50%;
        background: #fff;
    }

    .jacob-highlight-icon img {
        width: 100%;
        height: 100%;
        object-fit: contain;
    }

    .jacob-highlight strong {
        display: block;
        margin-bottom: 12px;
        color: var(--jacob-gold);
        font-size: 16px;
        line-height: 1.35;
        text-transform: uppercase;
    }

    .jacob-highlight span {
        color: rgba(255, 255, 255, .8);
        font-size: 14px;
        line-height: 1.5;
    }

    .jacob-gallery {
        position: relative;
        overflow: hidden;
        background:
            linear-gradient(135deg, rgba(248, 246, 241, .97), rgba(232, 239, 235, .96)),
            repeating-linear-gradient(135deg, rgba(18, 69, 84, .05) 0, rgba(18, 69, 84, .05) 1px, transparent 1px, transparent 22px);
    }

    .jacob-gallery::before {
        content: '';
        position: absolute;
        top: 0;
        left: 7%;
        width: 86%;
        height: 3px;
        background: linear-gradient(90deg, transparent, var(--jacob-gold), transparent);
        opacity: .8;
    }

    .jacob-gallery-inner {
        position: relative;
        z-index: 1;
    }

    .jacob-gallery-heading {
        display: flex;
        justify-content: space-between;
        align-items: end;
        gap: 30px;
        margin-bottom: 32px;
    }

    .jacob-gallery-heading p {
        max-width: 390px;
        margin: 0;
        color: var(--jacob-muted);
        line-height: 1.7;
    }

    .jacob-gallery-grid {
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        grid-auto-rows: 190px;
        gap: 15px;
    }

    .jacob-gallery-card {
        position: relative;
        overflow: hidden;
        min-height: 190px;
        padding: 0;
        border: 0;
        cursor: pointer;
        background: #dfe5e3;
    }

    .jacob-gallery-card:first-child {
        grid-column: span 2;
        grid-row: span 2;
    }

    .jacob-gallery-card img {
        width: 100%;
        height: 100%;
        display: block;
        object-fit: cover;
        transition: transform .4s ease;
    }

    .jacob-gallery-card:hover img {
        transform: scale(1.06);
    }

    .jacob-gallery-card::after {
        content: '+';
        position: absolute;
        right: 15px;
        bottom: 12px;
        width: 34px;
        height: 34px;
        display: grid;
        place-items: center;
        border-radius: 50%;
        background: rgba(16, 45, 55, .8);
        color: #fff;
        font-size: 22px;
    }

    .jacob-location {
        position: relative;
        overflow: hidden;
        background: linear-gradient(135deg, #0c303b 0%, #124554 58%, #1a6270 100%);
        color: #fff;
    }

    .jacob-location::before {
        content: '';
        position: absolute;
        top: -130px;
        right: -90px;
        width: 380px;
        height: 380px;
        border: 1px solid rgba(201, 165, 74, .28);
        border-radius: 50%;
        box-shadow: 0 0 0 28px rgba(201, 165, 74, .05), 0 0 0 56px rgba(201, 165, 74, .04);
        pointer-events: none;
    }

    .jacob-plans {
        padding: 88px 7%;
        background: #fff;
    }

    .jacob-plans-inner {
        max-width: 1180px;
        margin: 0 auto;
    }

    .jacob-plans-heading {
        max-width: 620px;
        margin-bottom: 34px;
    }

    .jacob-plans-grid {
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 28px;
    }

    .jacob-plan-card {
        display: block;
        overflow: hidden;
        padding: 0;
        border: 1px solid #e3e8e5;
        background: #f4f6f3;
        cursor: pointer;
        box-shadow: 0 14px 35px rgba(16, 45, 55, .1);
    }

    .jacob-plan-card img {
        width: 100%;
        /* height: min(62vw, 650px); */
        display: block;
        object-fit: contain;
        background: #eef1ee;
        transition: transform .35s ease;
    }

    .jacob-plan-card:hover img {
        transform: scale(1.025);
    }

    .jacob-plan-caption {
        display: block;
        padding: 16px 18px;
        background: #fff;
        color: var(--jacob-ink);
        font-size: 14px;
        font-weight: 700;
    }

    .jacob-advantage {
        padding: 88px 7%;
        background: #fff;
    }

    .jacob-advantage-inner {
        display: grid;
        grid-template-columns: .9fr 1.1fr;
        gap: 70px;
        max-width: 1180px;
        margin: 0 auto;
        align-items: center;
    }

    .jacob-advantage-image {
        width: 100%;
        min-height: 500px;
        display: block;
        object-fit: cover;
        box-shadow: 0 18px 45px rgba(16, 45, 55, .14);
    }

    .jacob-advantage-list {
        display: grid;
        gap: 12px;
        margin: 28px 0 0;
        padding: 0;
        list-style: none;
    }

    .jacob-advantage-list li {
        position: relative;
        padding: 16px 18px 16px 48px;
        background: var(--jacob-cream);
        color: var(--jacob-muted);
        font-size: 14px;
        line-height: 1.55;
    }

    .jacob-advantage-list li::before {
        content: '\2713';
        position: absolute;
        left: 17px;
        top: 15px;
        color: var(--jacob-gold);
        font-size: 17px;
        font-weight: 700;
    }

    .jacob-map {
        min-height: 390px;
        overflow: hidden;
        border: 7px solid rgba(255, 255, 255, .16);
        border-radius: 20px;
        box-shadow: 0 20px 45px rgba(3, 19, 24, .3);
    }

    .jacob-map iframe {
        width: 100%;
        height: 100%;
        min-height: 390px;
        display: block;
        border: 0;
    }

    .jacob-location-list {
        counter-reset: location-item;
        display: grid;
        gap: 12px;
        margin: 28px 0 0;
        padding: 0;
        list-style: none;
    }

    .jacob-location-list li {
        position: relative;
        display: flex;
        align-items: center;
        min-height: 54px;
        padding: 14px 16px 14px 54px;
        border: 1px solid rgba(255, 255, 255, .12);
        border-radius: 9px;
        background: rgba(255, 255, 255, .1);
        color: rgba(255, 255, 255, .84);
        box-shadow: none;
        font-size: 14px;
        line-height: 1.45;
    }

    .jacob-location-list li::before {
        counter-increment: location-item;
        content: '0' counter(location-item);
        position: absolute;
        left: 16px;
        color: var(--jacob-gold);
        font-size: 11px;
        font-weight: 800;
        letter-spacing: 1px;
    }

    .jacob-location .jacob-section-title {
        color: #fff;
    }

    .jacob-location .jacob-copy {
        color: rgba(255, 255, 255, .76);
    }

    .jacob-location .jacob-section-label {
        display: inline-block;
        padding-bottom: 9px;
        border-bottom: 2px solid var(--jacob-gold);
    }

    .jacob-location-list li:hover {
        border-color: rgba(201, 165, 74, .55);
        background: rgba(255, 255, 255, .15);
    }

    .jacob-lightbox {
        position: fixed;
        inset: 0;
        z-index: 10000;
        display: none;
        place-items: center;
        padding: 25px;
        background: rgba(4, 18, 24, .94);
    }

    .jacob-lightbox.is-open {
        display: grid;
    }

    .jacob-lightbox img {
        max-width: min(1100px, 92vw);
        max-height: 86vh;
        object-fit: contain;
    }

    .jacob-lightbox-close {
        position: absolute;
        top: 20px;
        right: 25px;
        border: 0;
        background: none;
        color: #fff;
        font-size: 38px;
        cursor: pointer;
    }

    @media (max-width: 850px) {

        .jacob-intro-inner,
        .jacob-location-inner,
        .jacob-advantage-inner {
            grid-template-columns: 1fr;
            gap: 38px;
        }

        .jacob-highlight-grid {
            grid-template-columns: repeat(2, 1fr);
        }
    }

    @media (max-width: 600px) {
        .jacob-hero {
            min-height: 610px;
            padding: 70px 6%;
        }

        .jacob-hero p {
            font-size: 16px;
        }

        .jacob-feature-banner {
            width: 90%;
            min-height: 290px;
            margin: 38px auto;
            padding: 42px 22px;
            border-radius: 18px;
        }

        .jacob-intro,
        .jacob-highlights,
        .jacob-gallery,
        .jacob-location,
        .jacob-advantage,
        .jacob-plans {
            padding: 60px 6%;
        }

        .jacob-advantage-image {
            min-height: 300px;
        }

        .jacob-plans-grid {
            grid-template-columns: 1fr;
        }

        .jacob-plan-card img {
            height: auto;
            min-height: 260px;
        }

        .jacob-gallery-heading {
            display: block;
        }

        .jacob-gallery-heading p {
            margin-top: 15px;
        }

        .jacob-gallery-grid {
            grid-template-columns: repeat(2, 1fr);
            grid-auto-rows: 150px;
            gap: 10px;
        }

        .jacob-gallery-card {
            min-height: 150px;
        }

        .jacob-gallery-card:first-child {
            grid-column: span 2;
            grid-row: span 1;
        }

        .jacob-highlight-grid {
            grid-template-columns: 1fr;
        }
    }








    /* =================================================================================
/* =================================================================================
     RESIDENTIAL / COMMERCIAL / NEW PRORERTY PAGE 
================================================================================== 
================================================================================== */


















    /* =================================================================================
/* =================================================================================
     THANK YOU PAGE
================================================================================== 
================================================================================== */
    .thankyou-page {
        min-height: calc(100vh - 80px);
        background: var(--jacob-cream);
        display: flex;
        align-items: center;
        justify-content: center;
        padding: 70px 20px;
        position: relative;
        overflow: hidden;
    }

    /* Background Decorations */
    .thankyou-page::before {
        content: "";
        position: absolute;
        width: 520px;
        height: 520px;
        border-radius: 50%;
        background: rgba(26, 92, 110, 0.06);
        top: -250px;
        right: -180px;
    }

    .thankyou-page::after {
        content: "";
        position: absolute;
        width: 420px;
        height: 420px;
        border-radius: 50%;
        background: rgba(201, 165, 74, 0.08);
        bottom: -220px;
        left: -180px;
    }

    .thankyou-container {
        width: 100%;
        max-width: 850px;
        position: relative;
        z-index: 2;
    }

    /* Card */
    .thankyou-card {
        background: #ffffff;
        border: 1px solid var(--border-light);
        border-radius: 28px;
        padding: 65px 55px;
        text-align: center;
        box-shadow: var(--shadow-card);
        position: relative;
        overflow: hidden;
    }

    .thankyou-card::before {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 5px;
        background: linear-gradient(
            90deg,
            var(--jacob-teal),
            var(--jacob-gold),
            var(--jacob-teal)
        );
    }

  .thankyou-icon {
    width: 100px;
    height: 100px;
    margin: 0 auto 28px;
    border-radius: 50%;
    background: rgba(201, 165, 74, 0.12);
    border: 2px solid rgba(201, 165, 74, 0.35);

    display: flex;
    align-items: center;
    justify-content: center;

    animation: successPulse 2s ease-in-out infinite;
}

.thankyou-success-image {
    width: 60px;
    height: 60px;
    object-fit: contain;
    display: block;
}

    @keyframes successPulse {
        0% {
            transform: scale(1);
            box-shadow: 0 0 0 0 rgba(201, 165, 74, 0.25);
        }

        50% {
            transform: scale(1.05);
            box-shadow: 0 0 0 15px rgba(201, 165, 74, 0);
        }

        100% {
            transform: scale(1);
            box-shadow: 0 0 0 0 rgba(201, 165, 74, 0);
        }
    }

    /* Eyebrow */
    .thankyou-eyebrow {
        display: inline-flex;
        align-items: center;
        gap: 8px;

        padding: 8px 16px;
        border-radius: 30px;

        background: rgba(26, 92, 110, 0.08);
        border: 1px solid rgba(26, 92, 110, 0.15);

        color: var(--jacob-teal);

        font-size: 12px;
        font-weight: 700;
        letter-spacing: 0.1em;
        text-transform: uppercase;

        margin-bottom: 18px;
    }

    /* Heading */
    .thankyou-title {
        margin: 0 0 18px;

        color: var(--jacob-ink);

        font-size: clamp(38px, 5vw, 56px);
        line-height: 1.1;
        font-weight: 800;
    }

    .thankyou-title span {
        color: var(--jacob-gold);
    }

    /* Description */
    .thankyou-description {
        max-width: 650px;
        margin: 0 auto 30px;

        color: var(--jacob-muted);

        font-size: 16px;
        line-height: 1.8;
    }

    /* Contact Information */
.thankyou-info {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 14px;
    flex-wrap: wrap;
    margin-bottom: 32px;
}

.thankyou-info-item {
    display: flex;
    align-items: center;
    gap: 10px;

    padding: 15px 22px;
    min-width: 240px;

    border-radius: 12px;

    background: var(--jacob-cream);
    border: 1px solid var(--border-light);

    color: var(--jacob-ink);
    text-decoration: none;

    font-size: 14px;
    font-weight: 600;

    transition: var(--transition-smooth);
}

.thankyou-info-item i {
    color: var(--jacob-gold);
    font-size: 17px;
}

.thankyou-info-item:hover {
    background: #ffffff;
    border-color: var(--jacob-gold);
    color: var(--jacob-teal);
    transform: translateY(-3px);
    box-shadow: var(--shadow-card);
}
    /* Buttons */
    .thankyou-actions {
        display: flex;
        justify-content: center;
        align-items: center;
        gap: 14px;
        flex-wrap: wrap;
    }

    .thankyou-button {
        min-width: 180px;

        padding: 15px 25px;

        border-radius: 10px;

        display: inline-flex;
        align-items: center;
        justify-content: center;
        gap: 9px;

        text-decoration: none;

        font-size: 14px;
        font-weight: 700;

        transition: var(--transition-smooth);
    }

    .thankyou-button-primary {
        background: var(--jacob-teal);
        color: #ffffff;
        border: 1px solid var(--jacob-teal);
    }

    .thankyou-button-primary:hover {
        background: var(--jacob-ink);
        border-color: var(--jacob-ink);
        color: #ffffff;

        transform: translateY(-3px);
        box-shadow: var(--shadow-hover);
    }

    .thankyou-button-outline {
        background: transparent;
        color: var(--jacob-teal);
        border: 1px solid var(--jacob-teal);
    }

    .thankyou-button-outline:hover {
        background: var(--jacob-teal);
        color: #ffffff;

        transform: translateY(-3px);
    }

    /* Countdown */
    .thankyou-redirect {
        margin: 30px 0 0;

        color: var(--text-muted);

        font-size: 13px;
        line-height: 1.6;
    }

    .thankyou-redirect strong {
        color: var(--jacob-teal);
    }

    #countdown {
        color: var(--jacob-gold);
        font-size: 16px;
    }

    /* Bottom Note */
    .thankyou-note {
        margin-top: 28px;
        padding-top: 24px;

        border-top: 1px solid var(--border-light);

        color: var(--text-muted);

        font-size: 12px;
        line-height: 1.7;
    }

    .thankyou-note i {
        color: var(--jacob-gold);
        margin-right: 5px;
    }

    /* Mobile */
    @media (max-width: 768px) {

        .thankyou-page {
            min-height: calc(100vh - 70px);
            padding: 45px 15px;
        }

        .thankyou-card {
            padding: 50px 25px;
            border-radius: 22px;
        }

        .thankyou-icon {
            width: 82px;
            height: 82px;
            font-size: 34px;
            margin-bottom: 24px;
        }

        .thankyou-title {
            font-size: 38px;
        }

        .thankyou-description {
            font-size: 15px;
        }

        .thankyou-info {
            flex-direction: column;
            width: 100%;
        }

        .thankyou-info-item {
            width: 100%;
            justify-content: center;
        }

        .thankyou-actions {
            flex-direction: column;
            width: 100%;
        }

        .thankyou-button {
            width: 100%;
        }
    }

    @media (max-width: 420px) {

        .thankyou-card {
            padding: 42px 20px;
        }

        .thankyou-title {
            font-size: 34px;
        }

        .thankyou-description {
            font-size: 14px;
            line-height: 1.7;
        }
    }




    











    