.elementor-4807 .elementor-element.elementor-element-879bb47{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;}.elementor-4807 .elementor-element.elementor-element-c5e07be{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;}.elementor-4807 .elementor-element.elementor-element-8c5b55f{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;}.elementor-4807 .elementor-element.elementor-element-d6827af{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;}.elementor-4807 .elementor-element.elementor-element-b28880c{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;}.elementor-4807 .elementor-element.elementor-element-b48a93c{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;}.elementor-4807 .elementor-element.elementor-element-aa6c3b3{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;}.elementor-4807 .elementor-element.elementor-element-74af18b{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;}/* Start custom CSS for html, class: .elementor-element-1dd1679 */.jh-hero-wrapper {
    width: 100vw;
    background: linear-gradient(180deg, #FFFFFF 0%, #d1e3f8 100%);
    font-family: 'Poppins', sans-serif;
    color: #1A202C;
    display: flex;
    justify-content: center;
    position: relative;
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
    box-sizing: border-box;
    overflow: hidden;
}

/* Main Container */
.jh-hero-container {
    width: 100%;
    max-width: 1320px;
    padding: clamp(50px, 6vw, 90px) clamp(24px, 5vw, 72px) 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: clamp(30px, 5vw, 70px);
    box-sizing: border-box;
}

/* Text Side */
.jh-hero-content {
    flex: 1 1 52%;
    max-width: 640px;
    padding-bottom: clamp(50px, 6vw, 90px);
    box-sizing: border-box;
}

.jh-hero-badge {
    display: inline-block;
    background-color: #FF924C;
    color: white;
    font-weight: 600;
    padding: 6px 16px;
    border-radius: 8px;
    font-size: clamp(0.85rem, 0.9vw, 0.95rem);
    margin-bottom: 20px;
}

.jh-hero-title {
    font-size: clamp(2.4rem, 4vw, 3.2rem);
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 25px;
    color: #06112a;
}

.jh-hero-text {
    font-size: clamp(1rem, 1.35vw, 1.2rem);
    line-height: 1.6;
    color: #2D3748;
    margin-bottom: 20px;
    max-width: 600px;
}

/* Bullet List */
.jh-hero-list {
    list-style: none;
    padding: 0;
    margin: 30px 0;
}

.jh-hero-list li {
    position: relative;
    padding-left: 35px;
    margin-bottom: 15px;
    font-size: clamp(1rem, 1.15vw, 1.1rem);
    color: #1A202C;
}

.jh-hero-list li::before {
    content: "›";
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 24px;
    height: 24px;
    background-color: #06112a;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 1.2rem;
}

/* CTA */
.jh-hero-btn {
    display: inline-block;
    background-color: #FF924C;
    color: white;
    padding: clamp(15px, 1.6vw, 18px) clamp(28px, 3vw, 40px);
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: clamp(1rem, 1.25vw, 1.2rem);
    transition: all 0.3s ease;
}

.jh-hero-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(255, 146, 76, 0.3);
}

/* Image Side */
.jh-hero-image-box {
    flex: 1 1 48%;
    display: flex;
    justify-content: center;
    align-items: flex-end;
    align-self: stretch;
    min-width: 360px;
    box-sizing: border-box;
}

.jh-hero-image-box img {
    width: clamp(360px, 42vw, 620px);
    max-width: 100%;
    height: auto;
    display: block;
    object-fit: contain;
}

/* Better desktop zoom behavior */
@media (min-width: 993px) and (max-width: 1200px) {
    .jh-hero-container {
        gap: clamp(24px, 3vw, 45px);
    }

    .jh-hero-content {
        flex-basis: 54%;
    }

    .jh-hero-image-box {
        flex-basis: 46%;
        min-width: 320px;
    }

    .jh-hero-image-box img {
        width: clamp(320px, 38vw, 520px);
    }
}

/* Tablet and Mobile */
@media (max-width: 992px) {
    .jh-hero-container {
        flex-direction: column;
        text-align: center;
        padding: 50px 20px 0;
        gap: 30px;
    }

    .jh-hero-content {
        max-width: 720px;
        padding-bottom: 20px;
    }

    .jh-hero-image-box {
        align-self: center;
        justify-content: center;
        min-width: 0;
        width: 100%;
        margin-top: 20px;
    }

    .jh-hero-image-box img {
        width: min(100%, 520px);
    }

    .jh-hero-list {
        max-width: 520px;
        margin: 30px auto;
    }

    .jh-hero-list li {
        text-align: left;
    }

    .jh-hero-title {
        font-size: clamp(2rem, 8vw, 2.5rem);
    }

    .jh-hero-text {
        margin: 0 auto 20px auto;
    }
}

/* Small Mobile */
@media (max-width: 480px) {
    .jh-hero-container {
        padding: 40px 18px 0;
    }

    .jh-hero-title {
        font-size: 2rem;
    }

    .jh-hero-text {
        font-size: 1rem;
    }

    .jh-hero-btn {
        width: 100%;
        text-align: center;
        padding: 16px 24px;
    }
}/* End custom CSS */
/* Start custom CSS for html, class: .elementor-element-2d4121f */.wb-any-section {
    background-color: #F8F7F3; /* Light beige from image */
    font-family: system-ui, -apple-system, sans-serif;
    color: #2D3748;
    padding: 80px 20px;
    width: 100%;
    
    /* DEFINED BLACK ICON COLOR HERE */
    --wb-any-icon-color: #000000;
}

.wb-any-container {
    max-width: 1100px;
    margin: 0 auto;
    text-align: center;
}

/* Title */
.wb-any-title {
    font-size: clamp(26px, 4vw, 42px); /* Responsive sizing */
    font-weight: 800;
    line-height: 1.1;
    color: #1A202C; /* Dark text */
    margin: 0 0 50px 0;
}

/* Grid Layout */
.wb-any-grid {
    display: grid;
    /* 5 columns on desktop, responsive breakdown in media queries */
    grid-template-columns: repeat(5, 1fr); 
    gap: 30px;
    justify-items: center;
}

/* Individual Icon Card */
.wb-any-card {
    background-color: #FFFFFF;
    width: 100%;
    max-width: 170px;
    height: 170px;
    border-radius: 20px; /* Fully rounded square */
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 20px;
    text-align: center;
    /* Soft shadow from the image */
    box-shadow: 0 10px 30px rgba(17, 34, 51, 0.05); 
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.wb-any-card:hover {
    transform: translateY(-5px); /* Hover lift */
    box-shadow: 0 15px 40px rgba(17, 34, 51, 0.08);
}

/* Icon Styling (Applied via the 'stroke' attribute in HTML) */
.wb-any-icon {
    width: 60px;
    height: 60px;
    margin-bottom: 18px;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Label Text */
.wb-any-label {
    font-size: 0.95rem;
    font-weight: 700;
    line-height: 1.3;
    color: #1A202C;
    margin: 0;
}

/* --- Responsive Adjustments --- */
@media (max-width: 1024px) {
    .wb-any-grid {
        grid-template-columns: repeat(3, 1fr); /* 3 columns on tablet */
    }
}

@media (max-width: 600px) {
    .wb-any-grid {
        grid-template-columns: repeat(2, 1fr); /* 2 columns on mobile */
        gap: 20px;
    }
    
    .wb-any-card {
        max-width: 160px;
        height: 160px;
    }
}/* End custom CSS */
/* Start custom CSS for html, class: .elementor-element-aa1d942 *//* Unique namespace to avoid page template overrides */
.thb-comp-section {
    background-color: #F4F7F9;
    font-family: 'Poppins', sans-serif;
    padding: 60px 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.thb-comp-header {
    text-align: center;
    margin-bottom: 40px;
}

.thb-comp-title {
    font-size: 3rem;
    font-weight: 900;
    color: #051531; /* Deep Navy */
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    margin: 0;
}

.thb-comp-vs {
    background-color: #FF924C; /* Brand Orange */
    color: white;
    font-size: 1rem;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.thb-comp-badge {
    color: #FF924C;
    font-weight: 800;
    letter-spacing: 2px;
    text-transform: uppercase;
    font-size: 0.9rem;
    margin: 15px 0;
    display: block;
}

.thb-comp-intro {
    color: #4f5d72;
    max-width: 700px;
    font-size: 1.1rem;
    line-height: 1.6;
}

/* White Card Container */
.thb-comp-card {
    background: white;
    max-width: 1200px;
    width: 100%;
    border-radius: 20px;
    box-shadow: 0 15px 45px rgba(0,0,0,0.07);
    padding: 40px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.thb-comp-logo {
    width: 220px;
    margin-bottom: 30px;
}

/* Table Design */
.thb-comp-table-container {
    width: 100%;
    overflow-x: auto;
}

.thb-comp-table {
    width: 100%;
    border-collapse: collapse;
    min-width: 700px;
}

.thb-comp-table thead th {
    padding: 18px;
    color: white;
    font-weight: 700;
    text-align: left;
}

.thb-comp-th-feat { background-color: #051531; border-radius: 10px 0 0 0; }
.thb-comp-th-twin { background-color: #FF924C; }
.thb-comp-th-agent { background-color: #D8DDE6; color: #4f5d72 !important; border-radius: 0 10px 0 0; }

.thb-comp-table td {
    padding: 15px 20px;
    border-bottom: 1px solid #EDEDED;
    font-size: 0.95rem;
    vertical-align: middle;
}

.thb-comp-feat-label {
    font-weight: 700;
    color: #051531;
    width: 25%;
}

.thb-comp-twin-cell {
    background-color: #FAF7F2; /* Subtle beige highlight */
    color: #22C55E; /* Green text */
    width: 37.5%;
    font-weight: 500;
}

.thb-comp-agent-cell {
    color: #E87832; /* Soft red/orange text */
    width: 37.5%;
}

.thb-comp-icon {
    font-weight: bold;
    margin-right: 8px;
}

/* Footer Section */
.thb-comp-footer {
    text-align: center;
    margin-top: 30px;
}

.thb-comp-stars {
    color: #FFD700;
    font-size: 1.2rem;
    margin-bottom: 5px;
    display: block;
}

.thb-comp-rating {
    color: #4f5d72;
    font-size: 0.9rem;
    font-weight: 600;
}

.thb-comp-btn {
    display: inline-block;
    background-color: #FF924C;
    color: white;
    text-decoration: none;
    font-weight: 700;
    padding: 18px 40px;
    border-radius: 8px;
    margin-top: 25px;
    transition: background 0.3s ease;
}

.thb-comp-btn:hover {
    background-color: #E87832;
}

/* Mobile Adjustments */
@media (max-width: 768px) {
    .thb-comp-title { font-size: 2rem; }
    .thb-comp-card { padding: 15px; }
}/* End custom CSS */
/* Start custom CSS for html, class: .elementor-element-3e7c2fe */.thb-stats-section {
    background-color: #F8F9FA;
    font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
    color: #112233; /* Twin Home Buyer Navy */
    padding: 80px 20px;
    width: 100%;
}

.thb-stats-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: flex-start;
    gap: 60px;
}

/* Left Content: Stats */
.thb-stats-left {
    flex: 1;
}

.thb-stats-title {
    font-size: 2.8rem;
    font-weight: 900;
    line-height: 1.1;
    color: #112233;
    margin: 0 0 40px 0;
}

.thb-stats-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

/* Stat Cards */
.thb-stats-card {
    background: #FFFFFF;
    padding: 35px 20px;
    border-radius: 16px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(17, 34, 51, 0.06);
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.thb-stats-card.dark {
    background-color: #051531; /* Deep Navy */
    color: #FFFFFF;
}

.thb-stats-number {
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 5px;
}

.thb-stats-label {
    font-size: 1rem;
    color: #4B5563;
}

.thb-stats-card.dark .thb-stats-label {
    color: #CBD5E0;
}

/* Right Content: Text & Image */
.thb-stats-right {
    flex: 1;
}

.thb-stats-description {
    font-size: 1.2rem;
    line-height: 1.6;
    color: #4B5563;
    margin-bottom: 30px;
}

.thb-stats-description strong {
    color: #112233;
}

.thb-stats-image-box {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

.thb-stats-image-box img {
    width: 100%;
    display: block;
    object-fit: cover;
}

/* Mobile Responsiveness */
@media (max-width: 992px) {
    .thb-stats-container {
        flex-direction: column;
        align-items: center;
    }
    
    .thb-stats-left, .thb-stats-right {
        width: 100%;
        text-align: center;
    }

    .thb-stats-title {
        font-size: 2.2rem;
    }
}/* End custom CSS */
/* Start custom CSS for html, class: .elementor-element-edc551f *//* Container for the cards that will move */
.thb-rev-slider-track {
    display: flex;
    gap: 30px; /* This must match the 'gap' variable in JS */
    transition: transform 0.5s ease-in-out;
    width: max-content; /* Important: prevents cards from wrapping */
}

/* Ensure the "window" hides the overflowing cards */
.thb-rev-right {
    overflow: hidden;
    width: 100%;
}

/* Ensure cards have a consistent width for the JS math to work */
.thb-rev-card {
    min-width: 400px; /* Or whatever width you prefer */
    flex-shrink: 0;
}

@media (max-width: 600px) {
    .thb-rev-card {
        min-width: 280px;
    }
}

/* Scoped namespace for testimonials */
.thb-rev-section {
    background-color: #F8F7F3;
    font-family: 'Poppins', sans-serif;
    color: #112233;
    padding: 80px 20px;
    width: 100%;
}

.thb-rev-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 40px;
}

/* Left Content */
.thb-rev-left {
    flex: 0 0 35%;
}

.thb-rev-title {
    font-size: 2.8rem;
    font-weight: 800;
    line-height: 1.1;
    margin: 0 0 20px 0;
}

.thb-rev-intro {
    font-size: 1.1rem;
    line-height: 1.6;
    color: #4B5563;
    margin-bottom: 30px;
}

/* Clickable Navigation Buttons */
.thb-rev-nav {
    display: flex;
    gap: 15px;
}

.thb-rev-btn {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    border: none;
    transition: all 0.2s ease-in-out;
    outline: none;
}

/* Specific button states */
.thb-rev-prev {
    background-color: #D1D5DB;
    color: #4B5563;
}

.thb-rev-prev:hover {
    background-color: #9CA3AF;
}

.thb-rev-next {
    background-color: #051531; /* Deep Navy */
    color: white;
}

.thb-rev-next:hover {
    background-color: #33CC33; /* Twin Home Buyer Green on hover */
    transform: scale(1.1);
}

.thb-rev-next:active {
    transform: scale(0.95);
}

/* Right Content: Cards */
.thb-rev-right {
    flex: 1;
    display: flex;
    gap: 20px;
    overflow: hidden; /* Hide overflow for the partial card look */
}

.thb-rev-card {
    background: white;
    padding: 40px;
    border-radius: 24px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    text-align: center;
    min-width: 320px;
    flex: 1;
}

.thb-rev-avatar {
    width: 90px;
    height: 90px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 15px;
    border: 3px solid #F8F7F3;
}

.thb-rev-name {
    display: block;
    font-style: italic;
    color: #9CA3AF;
    font-size: 0.9rem;
    margin-bottom: 10px;
}

.thb-rev-stars {
    color: #FFB800;
    font-size: 1.2rem;
    margin-bottom: 15px;
}

.thb-rev-text {
    font-size: 1rem;
    line-height: 1.6;
    color: #4B5563;
}

.thb-rev-text strong {
    color: #112233;
}

/* Responsive Adjustments */
@media (max-width: 992px) {
    .thb-rev-container {
        flex-direction: column;
        text-align: center;
    }
    
    .thb-rev-left {
        width: 100%;
    }

    .thb-rev-nav {
        justify-content: center;
        margin-bottom: 30px;
    }

    .thb-rev-card {
        min-width: 100%;
    }
    
    .thb-rev-right .thb-rev-card:last-child {
        display: none; /* Hide partial card on smaller screens */
    }
}/* End custom CSS */
/* Start custom CSS for html, class: .elementor-element-6e35c6e */.faq-section-wrapper {
        font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        background-color: #f6f5f0;
        padding: 60px 20px;
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .faq-container {
        width: 100%;
        max-width: 850px;
    }

    .faq-title {
        font-size: 42px;
        font-weight: 800;
        text-align: center;
        margin-bottom: 50px;
        color: #051531;
        line-height: 1.2;
    }

    .faq-item {
        background-color: #ffffff;
        margin-bottom: 18px;
        border-radius: 12px;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.04);
        overflow: hidden;
        transition: box-shadow 0.3s ease;
    }

    .faq-item:hover {
        box-shadow: 0 6px 18px rgba(0, 0, 0, 0.07);
    }

    .faq-question {
        padding: 24px 30px;
        font-size: 18px;
        font-weight: 700;
        color: #1a1a1a;
        cursor: pointer;
        display: flex;
        justify-content: space-between;
        align-items: center;
        user-select: none;
    }

    /* Arrow icon styling */
    .arrow-icon {
        width: 14px;
        height: 14px;
        border-right: 2.5px solid #1a5f7a;
        border-bottom: 2.5px solid #1a5f7a;
        transform: rotate(45deg);
        transition: transform 0.3s ease;
        margin-bottom: 5px; /* Alignment tweak */
    }

    .faq-item.active .arrow-icon {
        transform: rotate(-135deg);
        margin-bottom: -5px;
    }

    .faq-answer {
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease-out, padding 0.3s ease;
        padding: 0 30px;
        color: #555;
        line-height: 1.6;
        font-size: 16px;
    }

    .faq-item.active .faq-answer {
        padding-bottom: 25px;
        max-height: 300px; /* Adjust based on content length */
    }

    @media (max-width: 600px) {
        .faq-title { font-size: 32px; }
        .faq-question { font-size: 16px; padding: 20px; }
    }/* End custom CSS */