/* ================================================================
   Riverwood Estate - Sections Styles (Bultax Color Palette)
   Theme Colors matching current index.html:
   Primary Base: #07423C (Orange)
   Secondary/Hover: #0B574F
   Dark Backgrounds: #0E0E0E / #161616 / #222222
   Fonts: "Barlow", sans-serif (Headings) & "Roboto", sans-serif
   ================================================================ */

:root {
    --rw-theme-base: var(--bultax-base, #07423C);
    --rw-theme-hover: var(--bultax-base2, #0B574F);
    --rw-theme-light: rgba(7, 66, 60, 0.12);
    --rw-theme-border: rgba(7, 66, 60, 0.35);
    --rw-dark: #161616;
    --rw-darker: #0E0E0E;
    --rw-font-heading: var(--bultax-heading-font, "Barlow", sans-serif);
    --rw-font-body: var(--bultax-font, "Roboto", sans-serif);
}

/* Typography & Headings */
.rw-serif,
.rw-heading {
    font-family: var(--rw-font-heading) !important;
}

.rw-gold-text,
.rw-theme-text {
    color: var(--rw-theme-base) !important;
}

/* Small Label / Badge */
.rw-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.95rem;
    font-weight: 700;
    color: #d4af37;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 12px;
    font-family: var(--rw-font-heading);
}

.rw-badge img,
.rw-badge svg {
    width: 20px;
    height: 20px;
}

/* Main Section Titles */
.rw-section-title {
    font-family: var(--rw-font-heading);
    font-size: 2.5rem;
    font-weight: 800;
    line-height: 1.25;
    color: #0E0E0E;
    margin-bottom: 10px;
    letter-spacing: -0.02em;
}

.rw-section-title.rw-light {
    color: #ffffff;
}

.rw-section-title .rw-highlight {
    color: #d4af37;
}

/* -------------------------------------------------------------
   1. EXCLUSIVE PAYMENT STRUCTURE SECTION
   ------------------------------------------------------------- */
.rw-payment-section {
    background-color: #F8F8F8;
    border-top: 1px solid #eaeaea;
    border-bottom: 1px solid #eaeaea;
    padding: 85px 0;
}

.rw-payment-card {
    background: linear-gradient(135deg, #07423C 0%, #032421 100%);
    border: 2px solid rgba(255, 255, 255, 0.12);
    border-radius: 20px;
    padding: 55px 35px;
    text-align: center;
    box-shadow: 0 18px 45px rgba(7, 66, 60, 0.35), 0 10px 30px rgba(0, 0, 0, 0.4);
    position: relative;
    overflow: hidden;
}

.rw-payment-card::before {
    content: "";
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.08) 0%, transparent 60%);
    pointer-events: none;
}

.rw-payment-plan-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #5eead4;
    font-size: 1.15rem;
    font-weight: 700;
    font-family: var(--rw-font-heading);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 14px;
}

.rw-payment-title {
    font-family: var(--rw-font-heading);
    font-size: 2.6rem;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 30px;
    line-height: 1.2;
    letter-spacing: -0.01em;
}

.payment_plan_row {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    margin-top: 20px;
    margin-bottom: 25px;
    flex-wrap: wrap;
}

.payment_plan_box {
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 14px;
    padding: 20px 32px;
    color: #ffffff;
    min-width: 170px;
    text-align: center;
    transition: transform 0.3s ease, background 0.3s ease, box-shadow 0.3s ease;
    backdrop-filter: blur(8px);
}

.payment_plan_box:hover {
    transform: translateY(-4px);
    background: rgba(255, 255, 255, 0.14);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.payment_plan_box .rw-box-val {
    font-size: 2.1rem;
    font-weight: 800;
    color: #ffffff !important;
    font-family: var(--rw-font-heading);
    line-height: 1.1;
    margin-bottom: 6px;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.4);
}

.payment_plan_box .rw-box-lbl {
    font-size: 0.95rem;
    color: #ffffff !important;
    opacity: 0.9;
    font-weight: 600;
}

.payment_plan_plus {
    color: #5eead4 !important;
    font-size: 2rem;
    font-weight: 700;
    user-select: none;
}

.rw-payment-desc {
    color: rgba(255, 255, 255, 0.78);
    font-size: 1.05rem;
    line-height: 1.7;
    max-width: 720px;
    margin: 0 auto;
}

@media (max-width: 576px) {
    .rw-payment-section {
        padding: 50px 0;
    }

    .rw-payment-card {
        padding: 35px 15px;
        border-radius: 16px;
    }

    .rw-payment-title {
        font-size: 1.85rem;
    }

    .payment_plan_row {
        flex-wrap: nowrap !important;
        gap: 6px !important;
    }

    .payment_plan_col {
        flex: 1 1 0 !important;
        max-width: 33% !important;
    }

    .payment_plan_box {
        min-width: 0 !important;
        width: 100% !important;
        padding: 12px 6px !important;
        border-radius: 8px;
    }

    .payment_plan_box .rw-box-val {
        font-size: 1.2rem !important;
    }

    .payment_plan_box .rw-box-lbl {
        font-size: 0.7rem !important;
    }

    .payment_plan_plus {
        font-size: 1.15rem !important;
    }

    .rw-payment-desc {
        font-size: 0.9rem;
        line-height: 1.5;
    }
}

/* -------------------------------------------------------------
   2. FLEXIBLE PLOT SIZES & PRICING PLANS
   ------------------------------------------------------------- */
.rw-pricing-section {
    padding: 85px 0;
    background: #ffffff;
}

.rw-plot-tabs-nav {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-bottom: 45px;
    flex-wrap: wrap;
    border-bottom: none;
}

.rw-plot-tabs-nav .nav-link {
    background: #F4F4F4;
    border: 1px solid #E0E0E0;
    color: #333333;
    padding: 12px 28px;
    border-radius: 8px;
    font-size: 1.05rem;
    font-weight: 700;
    font-family: var(--rw-font-heading);
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
}

.rw-plot-tabs-nav .nav-link:hover {
    background: rgba(7, 66, 60, 0.15);
    border-color: var(--rw-theme-base);
    color: var(--rw-theme-base);
}

.rw-plot-tabs-nav .nav-link.active {
    background: var(--rw-theme-base) !important;
    color: #ffffff !important;
    border-color: var(--rw-theme-base) !important;
    box-shadow: 0 4px 15px rgba(7, 66, 60, 0.35);
}

.rw-plot-card {
    background: #ffffff;
    border: 1px solid #E8E8E8;
    border-radius: 16px;
    padding: 40px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.rw-plot-size-badge {
    display: inline-block;
    background: var(--rw-theme-base);
    color: #ffffff;
    font-size: 1.15rem;
    font-weight: 700;
    padding: 8px 22px;
    border-radius: 6px;
    margin-bottom: 20px;
    font-family: var(--rw-font-heading);
    border-left: 4px solid var(--rw-theme-base);
}

.rw-plot-desc {
    font-size: 1.05rem;
    color: #636363;
    line-height: 1.7;
    margin-bottom: 25px;
}

.arrow_listing {
    list-style: none;
    padding-left: 0;
    margin-bottom: 30px;
}

.arrow_listing li {
    position: relative;
    padding-left: 32px;
    margin-bottom: 14px;
    font-size: 1rem;
    color: #333333;
    line-height: 1.45;
}

.arrow_listing li::before {
    content: "\eb79";
    /* remixicon ri-check-double-line */
    font-family: remixicon !important;
    position: absolute;
    left: 0;
    top: 1px;
    color: var(--rw-theme-base);
    font-size: 1.25rem;
    font-weight: 700;
}

.rw-plot-images {
    position: relative;
    text-align: center;
}

.rw-plot-main-img {
    width: 100%;
    max-height: 480px;
    object-fit: cover;
    border-radius: 12px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
}

.rw-plot-floating-badge {
    position: absolute;
    bottom: -20px;
    right: 15px;
    width: 150px;
    height: auto;
    filter: drop-shadow(0 6px 15px rgba(0, 0, 0, 0.15));
    border-radius: 10px;
}

@media (max-width: 991px) {
    .rw-plot-card {
        padding: 25px 18px;
    }

    .rw-plot-tabs-nav {
        gap: 8px;
        margin-bottom: 25px;
        overflow-x: auto;
        flex-wrap: nowrap;
        justify-content: flex-start;
        padding-bottom: 10px;
    }

    .rw-plot-tabs-nav .nav-link {
        white-space: nowrap;
        padding: 8px 18px;
        font-size: 0.95rem;
    }

    .rw-plot-images {
        margin-top: 30px;
    }

    .rw-plot-floating-badge {
        width: 110px;
        bottom: -15px;
        right: 10px;
    }
}

/* -------------------------------------------------------------
   3 & 4. PRIME LOCATION & CONNECTIVITY + 5 KM RANGE (LIGHT THEME)
   ------------------------------------------------------------- */
.rw-location-section {
    background: linear-gradient(180deg, #F8FAF9 0%, #EDF4F2 50%, #F5F8F7 100%);
    padding: 85px 0 70px;
    color: #333333;
    position: relative;
    border-top: 1px solid #E2EBE8;
    border-bottom: 1px solid #E2EBE8;
    overflow: hidden;
}

.rw-location-section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 100%;
    background-image: 
        radial-gradient(circle at 12% 20%, rgba(7, 66, 60, 0.035) 0%, transparent 40%),
        radial-gradient(circle at 88% 75%, rgba(212, 175, 55, 0.04) 0%, transparent 45%);
    pointer-events: none;
}

.rw-location-header-wrap {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 35px;
    flex-wrap: wrap;
    gap: 20px;
    position: relative;
    z-index: 2;
}

.rw-location-section .rw-badge {
    background: rgba(7, 66, 60, 0.08);
    border: 1px solid rgba(7, 66, 60, 0.2);
    color: var(--rw-theme-base);
    padding: 6px 18px;
    border-radius: 30px;
    box-shadow: 0 2px 8px rgba(7, 66, 60, 0.04);
}

.rw-location-section .rw-section-title {
    color: #0E0E0E;
}

.rw-location-section .rw-section-title .rw-highlight {
    color: var(--rw-theme-base);
}

.rw-get-directions-btn {
    background: var(--rw-theme-base);
    color: #ffffff !important;
    padding: 14px 32px;
    font-weight: 700;
    font-size: 0.95rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    border-radius: 8px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
    text-decoration: none;
    box-shadow: 0 6px 20px rgba(7, 66, 60, 0.25);
    font-family: var(--rw-font-heading);
}

.rw-get-directions-btn:hover {
    background: var(--rw-theme-hover);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(7, 66, 60, 0.35);
    color: #ffffff !important;
}

/* Location Connectivity Carousel */
.rw-location-section .bultax-owl__carousel {
    max-width: 1080px;
    margin: 0 auto;
}

.rw-carousel-card {
    background: #ffffff;
    border-radius: 16px;
    overflow: hidden;
    margin: 0;
    border: 1px solid rgba(7, 66, 60, 0.13);
    box-shadow: 0 10px 30px rgba(7, 66, 60, 0.08), 0 2px 8px rgba(0, 0, 0, 0.03);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.rw-carousel-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 16px 36px rgba(7, 66, 60, 0.12), 0 4px 12px rgba(0, 0, 0, 0.04);
}

.rw-carousel-title {
    font-family: var(--rw-font-heading);
    font-size: 1.25rem;
    font-weight: 700;
    color: #0E0E0E;
    padding: 18px 24px;
    margin: 0;
    display: flex;
    align-items: center;
    gap: 12px;
    background: linear-gradient(135deg, #FFFFFF 0%, #F4F8F7 100%);
    border-bottom: 1px solid rgba(7, 66, 60, 0.1);
    letter-spacing: 0.3px;
    min-height: 68px;
}

.rw-carousel-title i {
    color: var(--rw-theme-base);
    font-size: 1.35rem;
    flex-shrink: 0;
}

.rw-location-section .owl-carousel .owl-item img,
.rw-location-section .rw-carousel-card img,
.rw-carousel-card img {
    width: 100% !important;
    min-width: 100% !important;
    aspect-ratio: 16 / 9 !important;
    height: auto !important;
    max-height: 520px;
    object-fit: cover !important;
    display: block !important;
}

/* Carousel Owl Dots & Nav on Light Theme */
.rw-location-section .owl-dots {
    text-align: center;
    margin-top: 22px;
    position: relative;
    z-index: 2;
}

.rw-location-section .owl-dot span {
    width: 10px;
    height: 10px;
    margin: 5px 6px;
    background: rgba(7, 66, 60, 0.22) !important;
    display: inline-block;
    border-radius: 20px;
    transition: all 0.3s ease;
}

.rw-location-section .owl-dot.active span,
.rw-location-section .owl-dot:hover span {
    background: var(--rw-theme-base) !important;
    width: 28px;
    border-radius: 10px;
}

.rw-location-section .owl-nav {
    text-align: center;
    margin-top: 15px;
    position: relative;
    z-index: 2;
}

.rw-location-section .owl-nav button.owl-prev,
.rw-location-section .owl-nav button.owl-next {
    width: 44px;
    height: 44px;
    background: #ffffff !important;
    color: var(--rw-theme-base) !important;
    border: 1px solid rgba(7, 66, 60, 0.18) !important;
    border-radius: 50% !important;
    box-shadow: 0 4px 15px rgba(7, 66, 60, 0.1) !important;
    transition: all 0.3s ease !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    margin: 0 6px !important;
}

.rw-location-section .owl-nav button.owl-prev:hover,
.rw-location-section .owl-nav button.owl-next:hover {
    background: var(--rw-theme-base) !important;
    color: #ffffff !important;
    border-color: var(--rw-theme-base) !important;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(7, 66, 60, 0.25) !important;
}

/* Maruti Driven Hub Stats Card */
.rw-maruti-stats-wrap {
    background: #ffffff;
    border: 1px solid rgba(7, 66, 60, 0.14);
    border-radius: 20px;
    padding: 48px 36px 40px;
    margin: 50px 0 35px;
    box-shadow: 0 16px 45px rgba(7, 66, 60, 0.08), 0 2px 10px rgba(0, 0, 0, 0.02);
    position: relative;
    overflow: hidden;
    z-index: 2;
}

.rw-maruti-stats-wrap::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #07423C 0%, #167066 35%, #d4af37 50%, #167066 65%, #07423C 100%);
}

.rw-maruti-title {
    font-family: var(--rw-font-heading);
    font-size: 2rem;
    font-weight: 800;
    color: #0E0E0E !important;
    margin-top: 10px;
    margin-bottom: 12px;
    letter-spacing: -0.01em;
}

.rw-maruti-title .rw-highlight {
    color: var(--rw-theme-base) !important;
}

.rw-maruti-subtitle {
    color: #556663;
    font-size: 1.05rem;
    line-height: 1.7;
    max-width: 760px;
    margin: 0 auto;
}

.rw-stat-item {
    background: #F8FAF9;
    border: 1px solid rgba(7, 66, 60, 0.1);
    border-radius: 16px;
    padding: 26px 16px;
    height: 100%;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 0 4px 14px rgba(7, 66, 60, 0.03);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.rw-stat-item:hover {
    background: #ffffff;
    border-color: rgba(7, 66, 60, 0.3);
    transform: translateY(-4px);
    box-shadow: 0 10px 25px rgba(7, 66, 60, 0.12);
}

.rw-stat-icon {
    font-size: 1.85rem;
    width: 54px;
    height: 54px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(7, 66, 60, 0.08);
    margin-bottom: 12px;
    transition: transform 0.3s ease;
}

.rw-stat-item:hover .rw-stat-icon {
    transform: scale(1.1);
}

.rw-stat-number {
    font-family: var(--rw-font-heading);
    font-size: 2.15rem;
    font-weight: 800;
    color: var(--rw-theme-base);
    margin-bottom: 6px;
    line-height: 1.15;
    letter-spacing: -0.01em;
}

.rw-stat-label {
    color: #526360;
    font-size: 0.9rem;
    line-height: 1.45;
    font-weight: 500;
}

/* 3 Feature Columns (5 Km Range, Location Benefits, Why it matters) */
.rw-benefit-box {
    background: #ffffff;
    border: 1px solid rgba(7, 66, 60, 0.13);
    border-radius: 18px;
    padding: 34px 28px;
    height: 100%;
    box-shadow: 0 8px 25px rgba(7, 66, 60, 0.05), 0 2px 6px rgba(0, 0, 0, 0.02);
    transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    position: relative;
    z-index: 2;
}

.rw-benefit-box:hover {
    transform: translateY(-5px);
    border-color: rgba(7, 66, 60, 0.35);
    box-shadow: 0 16px 36px rgba(7, 66, 60, 0.12), 0 4px 12px rgba(0, 0, 0, 0.03);
}

.rw-benefit-box.rw-featured {
    background: linear-gradient(160deg, #F3F9F7 0%, #E7F3EF 100%);
    border: 2px solid var(--rw-theme-base);
    box-shadow: 0 12px 32px rgba(7, 66, 60, 0.1);
}

.rw-benefit-box.rw-featured:hover {
    box-shadow: 0 18px 42px rgba(7, 66, 60, 0.18);
}

.rw-benefit-box h4 {
    color: var(--rw-theme-base);
    font-family: var(--rw-font-heading);
    font-size: 1.35rem;
    font-weight: 800;
    margin-bottom: 22px;
    padding-bottom: 14px;
    border-bottom: 1px solid rgba(7, 66, 60, 0.12);
    display: flex;
    align-items: center;
    gap: 10px;
    letter-spacing: 0.3px;
}

.rw-benefit-box h4 i {
    color: var(--rw-theme-base);
    font-size: 1.35rem;
}

.rw-benefit-box ul {
    list-style: none;
    padding-left: 0;
    margin-bottom: 0;
    flex-grow: 1;
}

.rw-benefit-box ul li {
    font-size: 0.96rem;
    color: #4B5A57;
    line-height: 1.6;
    margin-bottom: 15px;
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.rw-benefit-box ul li:last-child {
    margin-bottom: 0;
}

.rw-benefit-box ul li i {
    color: var(--rw-theme-base);
    font-size: 1.2rem;
    flex-shrink: 0;
    margin-top: 2px;
}

.rw-benefit-box ul li strong {
    color: #0E0E0E;
    font-weight: 700;
}

@media (max-width: 768px) {
    .rw-location-section {
        padding: 55px 0 45px;
    }

    .rw-location-header-wrap {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
    }

    .rw-location-section .owl-carousel .owl-item img,
    .rw-location-section .rw-carousel-card img,
    .rw-carousel-card img {
        width: 100% !important;
        height: 210px !important;
        aspect-ratio: 16 / 9 !important;
        object-fit: cover !important;
    }

    .rw-carousel-title {
        font-size: 0.95rem !important;
        line-height: 1.35 !important;
        padding: 12px 14px !important;
        min-height: 56px !important;
        gap: 8px !important;
    }

    .rw-carousel-title i {
        font-size: 1.15rem !important;
        flex-shrink: 0 !important;
    }

    .rw-maruti-stats-wrap {
        padding: 30px 18px 25px;
        margin: 35px 0 25px;
    }

    .rw-maruti-title {
        font-size: 1.6rem;
    }

    .rw-stat-item {
        padding: 18px 10px;
    }

    .rw-stat-number {
        font-size: 1.7rem;
    }

    .rw-stat-label {
        font-size: 0.8rem;
    }

    .rw-benefit-box {
        padding: 24px 18px;
    }
}

/* -------------------------------------------------------------
   5. TOWNSHIP AMENITIES (100+ PREMIUM AMENITIES)
   ------------------------------------------------------------- */
.rw-amenities-section {
    padding: 85px 0;
    background: #F8F8F8;
}

.rw-amenity-card {
    background: #ffffff;
    border-radius: 16px;
    overflow: hidden;
    margin-bottom: 45px;
    border: 1px solid #EAEAEA;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.04);
    display: flex;
    flex-wrap: wrap;
    align-items: center;
}

.rw-amenity-card.rw-reverse {
    flex-direction: row-reverse;
}

.rw-amenity-img-col {
    flex: 1 1 50%;
    min-width: 320px;
}

.rw-amenity-img-col img {
    width: 100%;
    height: 100%;
    max-height: 420px;
    object-fit: cover;
    display: block;
}

.rw-amenity-content-col {
    flex: 1 1 50%;
    min-width: 320px;
    padding: 50px 45px;
}

.rw-amenity-cat-title {
    font-family: var(--rw-font-heading);
    font-size: 2.2rem;
    font-weight: 800;
    color: #0E0E0E;
    margin-bottom: 4px;
    letter-spacing: -0.01em;
}

.rw-amenity-cat-subtitle {
    color: var(--rw-theme-base);
    font-weight: 700;
    font-size: 0.95rem;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    margin-bottom: 25px;
    font-family: var(--rw-font-heading);
}

.rw-amenity-list {
    list-style: none;
    padding-left: 0;
    margin-bottom: 0;
}

.rw-amenity-list li {
    font-size: 1.05rem;
    color: #636363;
    line-height: 1.5;
    margin-bottom: 14px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.rw-amenity-list li i {
    color: var(--rw-theme-base);
    font-size: 1.25rem;
}

@media (max-width: 991px) {
    .rw-amenities-section {
        padding: 55px 0;
    }

    .rw-amenity-card,
    .rw-amenity-card.rw-reverse {
        flex-direction: column;
    }

    .rw-amenity-img-col,
    .rw-amenity-content-col {
        flex: 1 1 100%;
        width: 100%;
        min-width: 0;
    }

    .rw-amenity-content-col {
        padding: 30px 20px;
    }

    .rw-amenity-cat-title {
        font-size: 1.7rem;
    }

    .rw-amenity-img-col img {
        max-height: 280px;
    }
}

/* -------------------------------------------------------------
   6. FLOATING CALL & WHATSAPP & SCROLL BUTTONS
   ------------------------------------------------------------- */
.floating-btn-fixed {
    position: fixed !important;
    right: 25px !important;
    width: 55px !important;
    height: 55px !important;
    border-radius: 50% !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    box-shadow: 0 4px 18px rgba(0, 0, 0, 0.28) !important;
    text-decoration: none !important;
    transition: transform 0.3s ease, background-color 0.3s ease, box-shadow 0.3s ease !important;
    color: #ffffff !important;
    z-index: 999999 !important;
}

.floating-btn-fixed:hover {
    transform: translateY(-5px) scale(1.06) !important;
    box-shadow: 0 6px 22px rgba(0, 0, 0, 0.38) !important;
    color: #ffffff !important;
}

.whatsapp-btn-fixed {
    bottom: 160px !important;
    background-color: #25D366 !important;
    font-size: 30px !important;
}

.whatsapp-btn-fixed:hover {
    background-color: #1ea952 !important;
}

.call-btn-fixed {
    bottom: 95px !important;
    background-color: #d4af37;
    border: 2px solid #d4af37;
    font-size: 22px !important;
    color: #ffffff;
}

.call-btn-fixed:hover {
    background-color: var(--rw-theme-base) !important;
    color: #ffffff !important;
}

#scroll-top {
    right: 25px !important;
    bottom: 30px !important;
    width: 50px !important;
    height: 50px !important;
    background-color: var(--rw-theme-base) !important;
    border-radius: 50% !important;
    box-shadow: 0 4px 15px rgba(7, 66, 60, 0.35) !important;
}

#scroll-top:hover {
    background-color: var(--rw-theme-hover) !important;
}

/* -------------------------------------------------------------
   7. PROJECT HIGHLIGHTS INTERACTIVE SHOWCASE
   ------------------------------------------------------------- */
.rw-highlights-section {
    background: linear-gradient(180deg, #FFFFFF 0%, #F5FAF8 50%, #EEF6F3 100%);
    padding: 95px 0 90px;
    position: relative;
    border-top: 1px solid #E2EBE8;
    border-bottom: 1px solid #E2EBE8;
    overflow: hidden;
}

.rw-highlights-section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(circle at 92% 15%, rgba(7, 66, 60, 0.045) 0%, transparent 45%),
        radial-gradient(circle at 8% 85%, rgba(212, 175, 55, 0.045) 0%, transparent 45%);
    pointer-events: none;
}

.rw-hl-desc {
    color: #556663;
    font-size: 1.05rem;
    line-height: 1.7;
    margin-top: 8px;
    margin-bottom: 25px;
}

.rw-hl-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.rw-hl-item {
    background: #ffffff;
    border: 1px solid rgba(7, 66, 60, 0.12);
    border-radius: 14px;
    padding: 16px 20px;
    cursor: pointer;
    transition: all 0.35s cubic-bezier(0.2, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: flex-start;
    gap: 16px;
    box-shadow: 0 2px 8px rgba(7, 66, 60, 0.02);
}

.rw-hl-item:hover {
    background: #ffffff;
    border-color: rgba(7, 66, 60, 0.35);
    transform: translateX(4px);
    box-shadow: 0 8px 22px rgba(7, 66, 60, 0.08);
}

.rw-hl-item.active {
    background: #ffffff;
    border-color: var(--rw-theme-base);
    box-shadow: 0 10px 28px rgba(7, 66, 60, 0.12);
    transform: translateX(8px);
}

.rw-hl-item.active::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 5px;
    background: var(--rw-theme-base);
}

.rw-hl-num {
    font-family: var(--rw-font-heading);
    font-size: 1.15rem;
    font-weight: 800;
    color: rgba(7, 66, 60, 0.55);
    background: rgba(7, 66, 60, 0.06);
    width: 40px;
    height: 40px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.rw-hl-item.active .rw-hl-num {
    background: var(--rw-theme-base);
    color: #ffffff;
}

.rw-hl-content {
    flex: 1;
}

.rw-hl-content h4 {
    font-family: var(--rw-font-heading);
    font-size: 1.15rem;
    font-weight: 700;
    color: #0E0E0E;
    margin-bottom: 4px;
    transition: color 0.3s ease;
}

.rw-hl-item.active .rw-hl-content h4 {
    color: var(--rw-theme-base);
}

.rw-hl-content p {
    font-size: 0.88rem;
    color: #636363;
    line-height: 1.5;
    margin-bottom: 0;
    transition: color 0.3s ease;
}

.rw-hl-item.active .rw-hl-content p {
    color: #333333;
}

.rw-hl-progress {
    position: absolute;
    bottom: 0;
    left: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--rw-theme-base) 0%, #167066 100%);
    width: 0%;
}

/* Right Column: Showcase Card */
.rw-hl-showcase-wrap {
    height: 100%;
}

.rw-hl-showcase {
    position: sticky;
    top: 110px;
    background: #ffffff;
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid rgba(7, 66, 60, 0.14);
    box-shadow: 0 16px 45px rgba(7, 66, 60, 0.1), 0 4px 12px rgba(0, 0, 0, 0.03);
}

.rw-hl-img-box {
    position: relative;
    width: 100%;
    height: 430px;
    overflow: hidden;
    background: #E8F0ED;
}

.rw-hl-img-item {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transform: scale(1.04);
    transition: opacity 0.6s cubic-bezier(0.4, 0, 0.2, 1), transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    pointer-events: none;
}

.rw-hl-img-item.active {
    opacity: 1;
    transform: scale(1);
    pointer-events: auto;
    z-index: 1;
}

.rw-hl-img-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.rw-hl-img-badge {
    position: absolute;
    top: 20px;
    left: 20px;
    background: rgba(7, 66, 60, 0.92);
    backdrop-filter: blur(8px);
    color: #ffffff;
    padding: 7px 18px;
    border-radius: 30px;
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 0.8px;
    text-transform: uppercase;
    font-family: var(--rw-font-heading);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    z-index: 3;
}

.rw-hl-caption {
    padding: 16px 22px;
    background: #ffffff;
    border-top: 1px solid rgba(7, 66, 60, 0.1);
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 15px;
}

.rw-hl-caption-title {
    font-family: var(--rw-font-heading);
    font-size: 1.22rem;
    font-weight: 800;
    color: var(--rw-theme-base);
    margin: 0;
}

.rw-hl-caption-sub {
    font-size: 0.88rem;
    color: #636363;
    margin: 3px 0 0;
}

.rw-hl-controls {
    display: flex;
    gap: 8px;
    flex-shrink: 0;
}

.rw-hl-ctrl-btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #F0F6F4;
    border: 1px solid rgba(7, 66, 60, 0.15);
    color: var(--rw-theme-base);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 1.2rem;
}

.rw-hl-ctrl-btn:hover {
    background: var(--rw-theme-base);
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(7, 66, 60, 0.25);
}

@media (max-width: 991px) {
    .rw-highlights-section {
        padding: 60px 0 50px;
    }

    .rw-hl-showcase {
        position: static;
        margin-top: 35px;
    }

    .rw-hl-img-box {
        height: 340px;
    }

    .rw-hl-item.active {
        transform: none;
    }
}

/* ===================================================
   Hero Slider Seamless Crossfade & Zero-Blank Fix
   =================================================== */
.main-slider-two {
    position: relative;
    background-color: #ffffff !important;
    overflow: hidden;
}

.main-slider-two__item {
    position: relative;
    background-color: #ffffff !important;
    z-index: 1;
    overflow: hidden;
}

/* Background image is ALWAYS 100% visible inside each slide */
.main-slider-two__bg-one {
    position: absolute !important;
    top: 0 !important;
    left: 0 !important;
    right: 0 !important;
    bottom: 0 !important;
    width: 100% !important;
    height: 100% !important;
    border-left: none !important;
    background-size: cover !important;
    background-position: center top !important;
    background-repeat: no-repeat !important;
    transform: none !important;
    filter: none !important;
    opacity: 1 !important;
    visibility: visible !important;
    transition: none !important;
    z-index: 0 !important;
}

/* Remove dark overlay completely to maintain 100% natural brightness & clarity */
.main-slider-two__bg-one::after {
    display: none !important;
}

.main-slider-two__bg-two {
    display: none !important;
}

/* Ensure all text & button elements are always visible inside their slide */
.main-slider-two .main-slider-two__title,
.main-slider-two .main-slider-two__subtitle,
.main-slider-two .main-slider-two__text,
.main-slider-two .main-slider-two__btn {
    opacity: 1 !important;
    visibility: visible !important;
    transform: none !important;
    filter: none !important;
    transition: none !important;
}

/* Slick handles the crossfade of the slide itself smoothly */
.main-slider-two .slick-slide {
    outline: none !important;
}

/* ===================================================
   Gallery Section Styles (Matching Screenshot Design)
   =================================================== */
.rw-gallery-section {
    background-color: #fbfbfb;
    position: relative;
    padding: 85px 0 95px;
    border-top: 1px solid rgba(0, 0, 0, 0.06);
}

.rw-gallery-header-row {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 20px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
    padding-bottom: 22px;
    margin-bottom: 35px;
}

.rw-gallery-tagline {
    color: #b5824c;
    font-family: 'Fraunces', serif;
    font-style: italic;
    font-size: 1.15rem;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 4px;
}

.rw-gallery-tagline i {
    font-size: 1.25rem;
    color: #b5824c;
    font-style: normal;
}

.rw-gallery-title {
    margin: 0;
    line-height: 1.15;
}

.rw-gallery-title-serif {
    display: block;
    color: #b5824c;
    font-family: 'Fraunces', serif;
    font-size: 2.85rem;
    font-weight: 600;
    letter-spacing: -0.01em;
}

.rw-gallery-title-bold {
    display: block;
    color: #222222;
    font-family: var(--rw-font-heading, "Barlow", sans-serif);
    font-size: 3.1rem;
    font-weight: 800;
    letter-spacing: -0.02em;
}

.rw-gallery-filter-list {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px;
    margin: 0;
    padding: 0;
}

.rw-gallery-filter-list li {
    background: #e8e8e8;
    color: #222222;
    border: 1px solid #dcdcdc;
    border-radius: 4px;
    padding: 8px 18px;
    font-family: var(--rw-font-heading, "Barlow", sans-serif);
    font-size: 0.84rem;
    font-weight: 700;
    letter-spacing: 0.6px;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.25s ease;
    user-select: none;
}

.rw-gallery-filter-list li:hover {
    background: #c59b63;
    color: #ffffff;
    border-color: #c59b63;
}

.rw-gallery-filter-list li.active {
    background: #c59b63;
    color: #ffffff;
    border-color: #c59b63;
    box-shadow: 0 4px 12px rgba(197, 155, 99, 0.35);
}

/* Image Card (Pure Image Layout as in Screenshot) */
.rw-gallery-item {
    transition: opacity 0.35s ease, transform 0.35s ease;
}

.rw-gallery-img-box {
    position: relative;
    display: block;
    border-radius: 8px;
    overflow: hidden;
    background: #111111;
    aspect-ratio: 16 / 10;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.08);
    transition: transform 0.35s ease, box-shadow 0.35s ease;
    cursor: pointer;
    text-decoration: none;
}

.rw-gallery-img-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.65s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.rw-gallery-img-box:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 32px rgba(0, 0, 0, 0.18);
}

.rw-gallery-img-box:hover img {
    transform: scale(1.06);
}

.rw-gallery-img-box__overlay {
    position: absolute;
    inset: 0;
    background: rgba(7, 40, 36, 0.4);
    opacity: 0;
    transition: opacity 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.rw-gallery-img-box:hover .rw-gallery-img-box__overlay {
    opacity: 1;
}

.rw-gallery-img-box__icon {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: rgba(197, 155, 99, 0.95);
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.35rem;
    transform: scale(0.65);
    transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.3);
}

.rw-gallery-img-box:hover .rw-gallery-img-box__icon {
    transform: scale(1);
}

.rw-gallery-img-box__caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 35px 18px 14px;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.85) 100%);
    color: #ffffff;
    font-family: var(--rw-font-heading, "Barlow", sans-serif);
    font-size: 1.05rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    transition: all 0.3s ease;
    z-index: 2;
    pointer-events: none;
}

.rw-gallery-img-box__caption span {
    text-shadow: 0 2px 4px rgba(0,0,0,0.7);
}

.rw-gallery-footer-tagline {
    font-size: 1.3rem;
    font-weight: 700;
    color: #1a1a1a;
    font-family: var(--rw-font-heading, "Barlow", sans-serif);
    letter-spacing: 0.5px;
    text-align: center;
    margin-top: 45px;
    margin-bottom: 0;
}

@media (max-width: 991px) {
    .rw-gallery-header-row {
        flex-direction: column;
        align-items: flex-start;
    }
    .rw-gallery-title-serif {
        font-size: 2.2rem;
    }
    .rw-gallery-title-bold {
        font-size: 2.5rem;
    }
}

/* ===================================================
   Gallery Bottom CTA Box
   =================================================== */
.rw-gallery-cta-box {
    position: relative;
    background: linear-gradient(135deg, #07423C 0%, #032421 100%);
    border-radius: 18px;
    padding: 42px 48px;
    margin-top: 55px;
    border: 1px solid rgba(255, 255, 255, 0.14);
    box-shadow: 0 16px 40px rgba(7, 66, 60, 0.28);
    overflow: hidden;
}

.rw-gallery-cta-box__bg {
    position: absolute;
    top: -50%;
    right: -10%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(197, 155, 99, 0.18) 0%, transparent 65%);
    pointer-events: none;
}

.rw-gallery-cta-badge {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    background: rgba(197, 155, 99, 0.2);
    border: 1px solid rgba(197, 155, 99, 0.45);
    color: #f1d5ab;
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    padding: 5px 14px;
    border-radius: 30px;
    margin-bottom: 12px;
}

.rw-gallery-cta-title {
    color: #ffffff;
    font-family: var(--rw-font-heading, "Barlow", sans-serif);
    font-size: 2.1rem;
    font-weight: 800;
    line-height: 1.25;
    margin-bottom: 10px;
    letter-spacing: -0.01em;
}

.rw-gallery-cta-title .text-gold {
    color: #c59b63 !important;
}

.rw-gallery-cta-desc {
    color: rgba(255, 255, 255, 0.84);
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 0;
}

.rw-btn-gold {
    background: #c59b63 !important;
    border-color: #c59b63 !important;
    color: #ffffff !important;
    font-weight: 700 !important;
    box-shadow: 0 6px 18px rgba(197, 155, 99, 0.35);
}

.rw-btn-gold:hover {
    background: #b5824c !important;
    border-color: #b5824c !important;
    color: #ffffff !important;
    transform: translateY(-2px);
}

.rw-btn-wa {
    background: #25D366 !important;
    border-color: #25D366 !important;
    color: #ffffff !important;
    font-weight: 700 !important;
    box-shadow: 0 6px 18px rgba(37, 211, 102, 0.3);
}

.rw-btn-wa:hover {
    background: #20ba5a !important;
    border-color: #20ba5a !important;
    color: #ffffff !important;
    transform: translateY(-2px);
}

.rw-cta-phone-text {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.92rem;
    display: inline-block;
}

.rw-cta-phone-text a:hover {
    color: #c59b63 !important;
    text-decoration: underline;
}

@media (max-width: 991px) {
    .rw-gallery-cta-box {
        padding: 32px 24px;
        text-align: center;
    }
}

/* ===================================================
   Funfact Counters Mobile 2-Per-Row Layout Fix
   =================================================== */
@media (max-width: 767px) {
    .funfact-one {
        padding-bottom: 25px !important;
    }

    .funfact-one__list {
        display: flex !important;
        flex-wrap: wrap !important;
        gap: 12px !important;
        margin: 0 !important;
        padding: 0 !important;
    }

    .funfact-one__list li,
    .funfact-one__list .funfact-one__list__item {
        flex: 0 0 calc(50% - 6px) !important;
        max-width: calc(50% - 6px) !important;
        width: calc(50% - 6px) !important;
        border: 1px solid #E2E2E2 !important;
        border-radius: 12px !important;
        overflow: hidden !important;
        box-shadow: 0 4px 14px rgba(0, 0, 0, 0.04) !important;
        background: #ffffff !important;
    }

    .funfact-one__list li:first-child,
    .funfact-one__list li:last-child,
    .funfact-one__list li+li {
        border-left: 1px solid #E2E2E2 !important;
        border-right: 1px solid #E2E2E2 !important;
    }

    .funfact-card {
        padding-bottom: 22px !important;
        padding-left: 8px !important;
        padding-right: 8px !important;
    }

    .funfact-card__icon__box {
        width: 62px !important;
        height: 62px !important;
        margin-bottom: 16px !important;
    }

    .funfact-card__icon__box::before,
    .funfact-card__icon__box::after {
        width: 20px !important;
        height: 20px !important;
    }

    .funfact-card__icon__box::before {
        left: -19.5px !important;
    }

    .funfact-card__icon__box::after {
        right: -19.5px !important;
    }

    .funfact-card__icon {
        width: 62px !important;
        height: 62px !important;
        font-size: 32px !important;
    }

    .funfact-card__count {
        font-size: 26px !important;
        margin-bottom: 6px !important;
        line-height: 1 !important;
    }

    .funfact-card__text {
        font-size: 12.5px !important;
        line-height: 1.35 !important;
        padding: 0 4px !important;
    }
}

@media (max-width: 480px) {
    .funfact-one__list {
        gap: 8px !important;
    }

    .funfact-one__list li,
    .funfact-one__list .funfact-one__list__item {
        flex: 0 0 calc(50% - 4px) !important;
        max-width: calc(50% - 4px) !important;
        width: calc(50% - 4px) !important;
    }

    .funfact-card {
        padding-bottom: 18px !important;
        padding-left: 6px !important;
        padding-right: 6px !important;
    }

    .funfact-card__icon__box {
        width: 54px !important;
        height: 54px !important;
        margin-bottom: 14px !important;
    }

    .funfact-card__icon__box::before,
    .funfact-card__icon__box::after {
        width: 17px !important;
        height: 17px !important;
    }

    .funfact-card__icon__box::before {
        left: -16.5px !important;
    }

    .funfact-card__icon__box::after {
        right: -16.5px !important;
    }

    .funfact-card__icon {
        width: 54px !important;
        height: 54px !important;
        font-size: 27px !important;
    }

    .funfact-card__count {
        font-size: 23px !important;
        margin-bottom: 4px !important;
    }

    .funfact-card__text {
        font-size: 11.5px !important;
        line-height: 1.3 !important;
    }
}

/* ===================================================
   Working Process (Easy Investment Plan) Mobile 2-Per-Row Fix
   =================================================== */
@media (max-width: 767px) {
    .working-process {
        padding-bottom: 40px !important;
    }

    .working-process .row.gutter-y-30 {
        row-gap: 35px !important;
    }

    .working-process__item,
    .working-process__item--two {
        margin-top: 55px !important;
        margin-bottom: 15px !important;
        padding-bottom: 1px !important;
    }

    .working-process__item::after,
    .working-process__item::before {
        height: calc(100% - 20px) !important;
        min-height: 220px !important;
        mask: none !important;
        -webkit-mask: none !important;
        border-radius: 20px !important;
    }

    .working-process__item__image {
        width: 110px !important;
        height: 110px !important;
        margin-top: -55px !important;
        padding: 6px !important;
        margin-bottom: 14px !important;
    }

    .working-process__item__content {
        padding: 0 8px !important;
    }

    .working-process__item .step {
        font-size: 11px !important;
        line-height: 1 !important;
        padding: 5px 12px !important;
        margin-bottom: 8px !important;
        border-radius: 4px !important;
    }

    .working-process__item__title {
        font-size: 14.5px !important;
        line-height: 1.25 !important;
        margin-bottom: 6px !important;
    }

    .working-process__item__text {
        font-size: 11.5px !important;
        line-height: 1.35 !important;
        margin-bottom: 16px !important;
        padding: 0 4px !important;
    }

    .working-process__item__btn {
        margin-bottom: -18px !important;
    }

    .working-process__item__btn a {
        width: 36px !important;
        height: 36px !important;
        font-size: 13px !important;
    }

    .working-process__item__arrow,
    .working-process__item__image__shape {
        display: none !important;
    }
}

@media (max-width: 480px) {
    .working-process .row.gutter-y-30 {
        row-gap: 30px !important;
    }

    .working-process__item,
    .working-process__item--two {
        margin-top: 48px !important;
    }

    .working-process__item__image {
        width: 95px !important;
        height: 95px !important;
        margin-top: -48px !important;
        padding: 5px !important;
        margin-bottom: 10px !important;
    }

    .working-process__item__content {
        padding: 0 4px !important;
    }

    .working-process__item .step {
        font-size: 10px !important;
        padding: 4px 9px !important;
        margin-bottom: 6px !important;
    }

    .working-process__item__title {
        font-size: 13.5px !important;
        margin-bottom: 4px !important;
    }

    .working-process__item__text {
        font-size: 10.5px !important;
        line-height: 1.3 !important;
        margin-bottom: 12px !important;
    }

    .working-process__item__btn a {
        width: 32px !important;
        height: 32px !important;
        font-size: 12px !important;
    }

    .rw-location-section .owl-carousel .owl-item img,
    .rw-location-section .rw-carousel-card img,
    .rw-carousel-card img {
        height: 185px !important;
    }

    .rw-carousel-title {
        font-size: 0.88rem !important;
        padding: 10px 12px !important;
        min-height: 52px !important;
    }
}

/* ===================================================
   Contact Cards & WhatsApp 2-Per-Row Layout Fix
   =================================================== */
.contact-one__call__grid {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact-one__call__grid .contact-one__call__item+.contact-one__call__item {
    margin-top: 0 !important;
}

.contact-one__call__link {
    display: inline-block;
    font-size: 15px;
    color: var(--bultax-text, #636363);
    font-weight: 500;
}

/* 4th Card: WhatsApp Proper Height & Width */
.contact-one__call__item--wa {
    background-color: #25D366 !important;
    border: 1px solid #25D366 !important;
    box-shadow: 0 8px 24px rgba(37, 211, 102, 0.28) !important;
    cursor: pointer;
    transition: all 0.35s ease-in-out !important;
}

.contact-one__call__item--wa::after {
    border-color: rgba(255, 255, 255, 0.55) !important;
}

.contact-one__call__item--wa .icon {
    color: #ffffff !important;
}

.contact-one__call__item--wa .icon::after {
    background-color: rgba(255, 255, 255, 0.35) !important;
}

.contact-one__call__item--wa .contact-one__call__title {
    color: #ffffff !important;
}

.contact-one__call__item--wa .contact-one__call__link {
    color: #ffffff !important;
    font-weight: 600 !important;
}

.contact-one__call__item--wa:hover {
    background-color: #1ea952 !important;
    transform: translateY(-4px) !important;
    box-shadow: 0 12px 30px rgba(37, 211, 102, 0.4) !important;
}

.contact-one__call__item--wa:hover .contact-one__call__title,
.contact-one__call__item--wa:hover .contact-one__call__link,
.contact-one__call__item--wa:hover .icon {
    color: #ffffff !important;
}

@media (max-width: 767px) {
    .contact-one__call {
        padding: 35px 16px 35px !important;
    }

    .contact-one__call__grid {
        display: flex !important;
        flex-direction: row !important;
        flex-wrap: wrap !important;
        justify-content: space-between !important;
        gap: 10px !important;
        margin-top: 15px !important;
    }

    .contact-one__call__item {
        flex: 0 0 calc(50% - 5px) !important;
        max-width: calc(50% - 5px) !important;
        width: calc(50% - 5px) !important;
        min-height: 140px !important;
        height: auto !important;
        display: flex !important;
        flex-direction: column !important;
        align-items: flex-start !important;
        justify-content: center !important;
        padding: 16px 12px !important;
        gap: 8px !important;
        border-radius: 12px !important;
        border: 1px solid rgba(7, 66, 60, 0.12) !important;
        box-shadow: 0 4px 14px rgba(0, 0, 0, 0.04) !important;
        text-align: left !important;
    }

    .contact-one__call__item::after {
        top: 6px !important;
        bottom: 6px !important;
        left: 6px !important;
        right: 6px !important;
        border-radius: 8px !important;
        border-width: 1px !important;
    }

    .contact-one__call__item .icon {
        font-size: 26px !important;
        line-height: 1 !important;
        margin: 0 !important;
    }

    .contact-one__call__item .icon::after {
        display: none !important;
    }

    .contact-one__call__item__shape {
        display: none !important;
    }

    .contact-one__call__content {
        width: 100% !important;
    }

    .contact-one__call__title {
        font-size: 13.5px !important;
        font-weight: 700 !important;
        line-height: 1.25 !important;
        margin-bottom: 4px !important;
    }

    .contact-one__call__item a,
    .contact-one__call__link,
    .contact-one__call__content p {
        font-size: 11px !important;
        line-height: 1.35 !important;
        word-break: break-word !important;
    }
}

@media (max-width: 420px) {
    .contact-one__call__grid {
        gap: 8px !important;
    }

    .contact-one__call__item {
        flex: 0 0 calc(50% - 4px) !important;
        max-width: calc(50% - 4px) !important;
        width: calc(50% - 4px) !important;
        padding: 14px 10px !important;
        min-height: 135px !important;
    }

    .contact-one__call__item .icon {
        font-size: 24px !important;
    }

    .contact-one__call__title {
        font-size: 12.5px !important;
    }

    .contact-one__call__item a,
    .contact-one__call__link,
    .contact-one__call__content p {
        font-size: 10px !important;
    }
}