.hero-section {
    min-height: 400px;
    display: flex;
    align-items: center;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    position: relative;
    /* padding: 80px 0; */
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.6));
    z-index: 0;
}

.hero-section .container {
    position: relative;
    z-index: 1;
}

/* Service Cards */
.service-item-card {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 20px;
    transition: 0.4s;
    overflow: hidden;
    height: 100%;
}

.service-item-card:hover {
    border-color: var(--luxury-gold);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
    background: rgba(255, 255, 255, 0.05);
}

.service-img-wrapper {
    height: 200px;
    overflow: hidden;
    position: relative;
}

.service-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 0.6s;
}

.service-item-card:hover .service-img-wrapper img {
    transform: scale(1.1);
}

.service-arrow-box {
    position: absolute;
    bottom: 20px;
    left: 20px;
    width: 45px;
    height: 45px;
    background: var(--luxury-gold);
    color: #000;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    z-index: 2;
    transition: 0.5s cubic-bezier(0.19, 1, 0.22, 1);
    box-shadow: 0 5px 15px rgba(212, 175, 93, 0.3);
}

.service-item-card:hover .service-arrow-box {
    transform: rotate(-45deg);
    background: #fff;
}

.service-card-icon {
    width: 50px;
    height: 50px;
    background: var(--luxury-gold);
    color: #000;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    font-size: 24px;
}

.steps-wrapper {
    position: relative;
}

.steps-wrapper::before {
    content: 'PROCESS';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 10vw;
    font-weight: 900;
    color: rgba(255, 255, 255, 0.02);
    z-index: 0;
    letter-spacing: 15px;
    pointer-events: none;
}

.step-item {
    position: relative;
    padding: 40px 20px;
    text-align: center;
    transition: 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 1;
}

.btn-hero-link {
    display: inline-flex;
    align-items: center;
    gap: 3px;
    padding: 3px 7px;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: #fff;
    text-decoration: none !important;
    border-radius: 50px;
    font-weight: 600;
    transition: 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.btn-hero-link span {
    width: max-content;
    font-size: 12px;
}

@media (min-width: 992px) {
    .step-item:not(:last-child)::after {
        content: '';
        position: absolute;
        top: 70px;
        left: -50%;
        width: 100%;
        height: 1px;
        background: linear-gradient(to left,
                transparent,
                rgba(212, 175, 93, 0.4) 50%,
                transparent);
        z-index: -1;
    }


    .btn-hero-link span {
        width: max-content;
        font-size: 18px;
    }

    .btn-hero-link i {
        font-size: 23px;
    }

    .btn-hero-link {
        padding: 8px 20px;
        gap: 12px;
    }

    .hero-section {
        width: 100%;
        margin-top: -120px;
    }

}


.step-number-wrapper {
    position: relative;
    width: 60px;
    height: 60px;
    margin: 0 auto 30px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.step-number-wrapper::before {
    content: '';
    position: absolute;
    inset: -10px;
    border: 1px solid rgba(212, 175, 93, 0.1);
    border-radius: 50%;
    transition: 0.5s;
}

.step-item:hover .step-number-wrapper::before {
    border-color: var(--luxury-gold);
    transform: scale(1.2);
    box-shadow: 0 0 20px rgba(212, 175, 93, 0.2);
}

.step-number {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #1a1a1a, #0a0a0a);
    border: 2px solid var(--luxury-gold);
    color: var(--luxury-gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    font-weight: 900;
    position: relative;
    z-index: 2;
    transition: 0.5s;
}

.step-item:hover .step-number {
    background: var(--luxury-gold);
    color: #000;
    box-shadow: 0 0 30px rgba(212, 175, 93, 0.5);
}

.step-title {
    position: relative;
    display: inline-block;
    padding-bottom: 10px;
    margin-bottom: 15px;
}

.step-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    right: 50%;
    transform: translateX(50%);
    width: 30px;
    height: 2px;
    background: var(--luxury-gold);
    transition: 0.4s;
}

.step-item:hover .step-title::after {
    width: 60px;
}

@keyframes luxuryPulse {
    0% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(212, 175, 93, 0.4);
    }

    70% {
        transform: scale(1.05);
        box-shadow: 0 0 0 15px rgba(212, 175, 93, 0);
    }

    100% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(212, 175, 93, 0);
    }
}

.step-item:hover .step-number {
    animation: luxuryPulse 2s infinite;
}

.services-cta {
    background: linear-gradient(135deg, rgba(212, 175, 93, 0.1), transparent);
    border: 1px solid rgba(212, 175, 93, 0.3);
    border-radius: 30px;
    padding: 60px 40px;
    backdrop-filter: blur(20px);
}

.faq-accordion .accordion-item {
    background: rgba(255, 255, 255, 0.02);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.05);
    margin-bottom: 20px;
    border-radius: 18px !important;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    position: relative;
}

.faq-accordion .accordion-item:hover {
    border-color: rgba(212, 175, 93, 0.3);
    background: rgba(255, 255, 255, 0.04);
}

.faq-accordion .accordion-item:has(.accordion-button:not(.collapsed)) {
    border-color: var(--luxury-gold);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2), 0 0 15px rgba(212, 175, 93, 0.1);
    background: rgba(212, 175, 93, 0.03);
}

.faq-accordion .accordion-button {
    background: transparent !important;
    color: #fff !important;
    font-weight: 700;
    padding: 25px 30px;
    box-shadow: none !important;
    font-size: 17px;
    transition: all 0.3s;
}

.faq-accordion .accordion-button:not(.collapsed) {
    color: var(--luxury-gold) !important;
    padding-bottom: 15px;
}

.faq-accordion .accordion-item::before {
    content: '';
    position: absolute;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
    width: 4px;
    height: 0;
    background: var(--luxury-gold);
    transition: 0.4s;
    z-index: 5;
    border-radius: 4px 0 0 4px;
}

.faq-accordion .accordion-item:has(.accordion-button:not(.collapsed))::before {
    height: 40%;
}

.faq-accordion .accordion-button::after {
    filter: brightness(0) invert(1);
    background-size: 18px;
    transition: 0.4s transform cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.faq-accordion .accordion-button:not(.collapsed)::after {
    filter: none;
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23DFAE2E'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
    transform: rotate(-180deg);
}

.faq-accordion .accordion-body {
    padding: 0 30px 25px;
    font-size: 15px;
    color: rgba(255, 255, 255, 0.6) !important;
    line-height: 1.8;
}

.btn-advisor {
    display: inline-flex;
    align-items: center;
    gap: 15px;
    padding: 15px 35px;
    background: var(--luxury-gold);
    color: #000;
    text-decoration: none;
    border-radius: 50px;
    font-weight: bold;
    transition: 0.3s;
    box-shadow: 0 10px 25px rgba(212, 175, 93, 0.2);
}

.btn-advisor:hover {
    box-shadow: 0 15px 35px rgba(212, 175, 93, 0.4);
    color: #000;
}




.btn-hero-link:hover {
    background: rgba(212, 175, 93, 0.1);
    border-color: var(--luxury-gold);
    color: var(--luxury-gold);

}

.btn-hero-link i {
    font-size: 18px;
    color: var(--luxury-gold);
}


.luxury-cta-section {
    position: relative;
    padding: 100px 0;
    overflow: hidden;
}

.luxury-cta-bg-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.15;
    pointer-events: none;
    z-index: 0;
}

.cta-orb-1 {
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, var(--luxury-gold), transparent 70%);
    top: -200px;
    right: -200px;
    animation: ctaOrbMove1 20s infinite alternate;
}

.cta-orb-2 {
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, #3a7bd5, transparent 70%);
    bottom: -150px;
    left: -150px;
    animation: ctaOrbMove2 25s infinite alternate;
}

@keyframes ctaOrbMove1 {
    0% {
        transform: translate(0, 0) scale(1);
    }

    100% {
        transform: translate(-100px, 100px) scale(1.2);
    }
}

@keyframes ctaOrbMove2 {
    0% {
        transform: translate(0, 0) scale(1);
    }

    100% {
        transform: translate(80px, -80px) scale(1.1);
    }
}

.cta-grid-overlay {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(212, 175, 93, 0.04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(212, 175, 93, 0.04) 1px, transparent 1px);
    background-size: 80px 80px;
    z-index: 1;
    pointer-events: none;
}

.luxury-cta-wrapper {
    position: relative;
    z-index: 2;
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(212, 175, 93, 0.2);
    border-radius: 40px;
    padding: 80px 40px;
    text-align: center;
    box-shadow: 0 40px 100px rgba(0, 0, 0, 0.3);
    overflow: hidden;
}

.luxury-cta-wrapper::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(212, 175, 93, 0.05) 0%, transparent 100%);
    pointer-events: none;
}
.cta-floating-icon {
    position: absolute;
    font-size: 100px;
    color: rgba(212, 175, 93, 0.07);
    z-index: -1;
    animation: ctaIconFloat 10s infinite linear;
}

.cta-f-1 {
    top: 20px;
    right: 40px;
    transform: rotate(15deg);
}

.cta-f-2 {
    bottom: 20px;
    left: 40px;
    transform: rotate(-15deg);
}

@keyframes ctaIconFloat {

    0%,
    100% {
        transform: translateY(0) rotate(15deg);
    }

    50% {
        transform: translateY(-20px) rotate(20deg);
    }
}

.luxury-cta-eyebrow {
    display: inline-block;
    padding: 8px 18px;
    background: rgba(212, 175, 93, 0.15);
    border: 1px solid rgba(212, 175, 93, 0.3);
    border-radius: 50px;
    color: var(--luxury-gold);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 2px;
    margin-bottom: 25px;
    text-transform: uppercase;
}

.luxury-cta-title {
    font-size: 48px;
    font-weight: 800;
    color: #fff;
    margin-bottom: 20px;
    line-height: 1.2;
}

.luxury-cta-gold-accent {
    background: linear-gradient(135deg, #d4af5d, #e0c47a, #d4af5d);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.luxury-cta-desc {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 45px;
    max-width: 650px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.8;
}

.luxury-cta-btns {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
}

.btn-luxury-primary {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 18px 45px;
    background: var(--luxury-gold);
    color: #000;
    text-decoration: none !important;
    border-radius: 50px;
    font-weight: 800;
    font-size: 16px;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 15px 35px rgba(212, 175, 93, 0.3);
}

.btn-luxury-primary:hover {
    /* transform: translateY(-8px) scale(1.05); */
    box-shadow: 0 20px 50px rgba(212, 175, 93, 0.5);
    color: #000;
}

.btn-luxury-outline {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 18px 40px;
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #fff;
    text-decoration: none !important;
    border-radius: 50px;
    font-weight: 700;
    font-size: 16px;
    transition: all 0.4s;
    backdrop-filter: blur(10px);
}

.btn-luxury-outline:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: #fff;
    /* transform: translateY(-5px); */
}

.btn-luxury-outline i {
    font-size: 20px;
    color: var(--luxury-gold);
}

/* Trust Badge Footer */
.luxury-cta-trust {
    margin-top: 50px;
    display: flex;
    justify-content: center;
    gap: 30px;
    opacity: 0.6;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #fff;
    font-size: 14px;
}

.trust-item i {
    color: var(--luxury-gold);
    font-size: 18px;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .luxury-cta-title {
        font-size: 32px;
    }

    .luxury-cta-desc {
        font-size: 16px;
    }

    .luxury-cta-wrapper {
        padding: 50px 20px;
        border-radius: 30px;
    }

    .luxury-cta-btns {
        flex-direction: column;
        width: 100%;
    }

    .btn-luxury-primary,
    .btn-luxury-outline {
        width: 100%;
        justify-content: center;
    }

    .luxury-cta-trust {
        flex-direction: column;
        gap: 15px;
        align-items: center;
    }
}

/* Light Mode adjustments */
html.light-mode .luxury-cta-wrapper {
    background: rgba(255, 255, 255, 0.8);
    border-color: rgba(212, 175, 93, 0.4);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.1);
}

html.light-mode .luxury-cta-title {
    color: #1a1a1a;
}

html.light-mode .luxury-cta-desc {
    color: #555;
}

html.light-mode .btn-luxury-outline {
    color: #1a1a1a;
    border-color: rgba(0, 0, 0, 0.1);
}

html.light-mode .trust-item {
    color: #333;
}

html.light-mode .cta-floating-icon {
    color: rgba(212, 175, 93, 0.05);
}

html.light-mode .btn-hero-link {
    background: rgba(0, 0, 0, 0.03);
    border-color: rgba(0, 0, 0, 0.1);
    color: #333;
}

html.light-mode .btn-hero-link:hover {
    background: rgba(212, 175, 93, 0.1);
    border-color: var(--luxury-gold);
    color: var(--luxury-gold);
}


html.light-mode .service-item-card {
    background: #fff;
    border-color: rgba(0, 0, 0, 0.05);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

html.light-mode .toggle-color-class {
    color: #000 !important;
}

html.light-mode .text-white-50 {
    color: rgba(0, 0, 0, 0.5) !important;
}

html.light-mode .step-item {
    border-color: rgba(0, 0, 0, 0.05);
}

html.light-mode .steps-wrapper::before {
    color: rgba(0, 0, 0, 0.03);
}

html.light-mode .step-number {
    background: #fff;
    border-color: #eee;
    color: #333;
}

html.light-mode .step-item:hover .step-number {
    background: var(--luxury-gold);
    color: #fff;
    border-color: var(--luxury-gold);
}

html.light-mode .step-number-wrapper::before {
    border-color: rgba(0, 0, 0, 0.05);
}

html.light-mode .step-title::after {
    background: #ddd;
}

html.light-mode .step-item:hover .step-title::after {
    background: var(--luxury-gold);
}

html.light-mode .faq-accordion .accordion-item {
    background: rgba(255, 255, 255, 0.9);
    border-color: rgba(0, 0, 0, 0.08);
}

html.light-mode .faq-accordion .accordion-item:has(.accordion-button:not(.collapsed)) {
    background: rgba(223, 174, 146, 0.05);
    border-color: var(--luxury-gold);
}

html.light-mode .faq-accordion .accordion-button {
    color: #1a1a1a !important;
}

html.light-mode .faq-accordion .accordion-button:not(.collapsed) {
    color: #8a6a00 !important;
}

html.light-mode .faq-accordion .accordion-body {
    color: #444 !important;
}

html.light-mode .faq-accordion .accordion-button::after {
    filter: none !important;
}

/* Responsive Fixes */
@media (max-width: 991px) {
    .step-item {
        border-left: none;
        border-bottom: 1px solid rgba(255, 255, 255, 0.05);
        padding: 20px;
    }

    .hero-section {
        text-align: center;
        /* padding: 40px 0; */
    }

    .section-floating-nav .btn-hero-link {
        padding: 6px 14px;
        gap: 6px;
    }

    .section-floating-nav .btn-hero-link span {
        font-size: 13px;
    }

    .section-floating-nav .btn-hero-link i {
        font-size: 16px;
    }
}

.why-us-luxury-section {
    position: relative;
    overflow: hidden;
    background: linear-gradient(160deg, #0c0c0c 0%, #121212 50%, #0a0e14 100%);
    border-top: 1px solid rgba(212, 175, 93, 0.08);
    border-bottom: 1px solid rgba(212, 175, 93, 0.08);
}


.why-us-bg-orb {
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
    filter: blur(80px);
    opacity: 0.12;
}

.why-us-orb-1 {
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, #d4af5d, transparent 70%);
    top: -150px;
    right: -150px;
    animation: orbFloat1 12s ease-in-out infinite alternate;
}

.why-us-orb-2 {
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, #3a7bd5, transparent 70%);
    bottom: -100px;
    left: -100px;
    animation: orbFloat2 15s ease-in-out infinite alternate;
}

@keyframes orbFloat1 {
    from {
        transform: translate(0, 0) scale(1);
    }

    to {
        transform: translate(-40px, 40px) scale(1.15);
    }
}

@keyframes orbFloat2 {
    from {
        transform: translate(0, 0) scale(1);
    }

    to {
        transform: translate(30px, -30px) scale(1.1);
    }
}

/* ---- Subtle Grid Overlay ---- */
.why-us-grid-overlay {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(212, 175, 93, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(212, 175, 93, 0.03) 1px, transparent 1px);
    background-size: 60px 60px;
    pointer-events: none;
}

/* ---- Section Header ---- */
.why-us-eyebrow {
    display: inline-block;
    padding: 6px 20px;
    background: rgba(212, 175, 93, 0.1);
    border: 1px solid rgba(212, 175, 93, 0.3);
    border-radius: 50px;
    color: #d4af5d;
    font-size: 13px;
    font-weight: bold;
    letter-spacing: 2px;
}

.why-us-main-title {
    line-height: 1.35;
}

.why-us-gold-text {
    background: linear-gradient(135deg, #d4af5d, #e0c47a, #d4af5d);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.why-us-title-line {
    width: 80px;
    height: 3px;
    background: linear-gradient(to right, transparent, #d4af5d, transparent);
    border-radius: 2px;
}

.why-us-img-frame {
    position: relative;
    padding: 16px;
}

.why-us-corner {
    position: absolute;
    width: 40px;
    height: 40px;
    border-color: #d4af5d;
    border-style: solid;
    z-index: 2;
}

.why-us-corner-tl {
    top: 0;
    right: 0;
    border-width: 3px 3px 0 0;
    border-radius: 0 8px 0 0;
}

.why-us-corner-br {
    bottom: 0;
    left: 0;
    border-width: 0 0 3px 3px;
    border-radius: 0 0 8px 0;
}

.why-us-img-wrapper {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.6), 0 0 0 1px rgba(212, 175, 93, 0.15);
}

.why-us-main-img {
    width: 100%;
    display: block;
    object-fit: cover;
    height: 480px;
    transition: transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.why-us-img-frame:hover .why-us-main-img {
    transform: scale(1.04);
}

.why-us-img-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.65) 0%, transparent 60%);
    pointer-events: none;
}


.why-us-exp-badge {
    position: absolute;
    bottom: 30px;
    left: -20px;
    width: 110px;
    height: 110px;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 3;
}

.why-us-exp-ring {
    position: absolute;
    inset: 0;
    border-radius: 50%;
    border: 2px solid rgba(212, 175, 93, 0.4);
    animation: expRingPulse 3s ease-in-out infinite;
}

@keyframes expRingPulse {

    0%,
    100% {
        transform: scale(1);
        opacity: 0.5;
    }

    50% {
        transform: scale(1.12);
        opacity: 1;
    }
}

.why-us-exp-inner {
    width: 90px;
    height: 90px;
    background: linear-gradient(135deg, #d4af5d, #b8944a);
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 40px rgba(212, 175, 93, 0.5);
    text-align: center;
}

.why-us-exp-num {
    font-size: 24px;
    font-weight: 900;
    color: #000;
    line-height: 1;
}

.why-us-exp-label {
    font-size: 10px;
    font-weight: bold;
    color: rgba(0, 0, 0, 0.7);
    margin-top: 2px;
}

/* ---- Floating Mini Stat Card ---- */
.why-us-mini-stat {
    position: absolute;
    top: 30px;
    left: -10px;
    background: rgba(15, 15, 15, 0.85);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(212, 175, 93, 0.25);
    border-radius: 14px;
    padding: 12px 18px;
    display: flex;
    align-items: center;
    gap: 10px;
    z-index: 3;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
    animation: floatUpDown 4s ease-in-out infinite;
}

@keyframes floatUpDown {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-8px);
    }
}

.why-us-mini-icon {
    font-size: 22px;
    color: #d4af5d;
}

.why-us-mini-val {
    font-size: 18px;
    font-weight: 900;
    color: #fff;
    line-height: 1;
}

.why-us-mini-lbl {
    font-size: 11px;
    color: rgba(255, 255, 255, 0.5);
    margin-top: 2px;
}

/* ============================================================
   FEATURE ITEMS
   ============================================================ */
.why-us-features-wrap {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.why-us-feature-item {
    display: flex;
    gap: 22px;
    align-items: flex-start;
    padding: 24px 28px;
    border-radius: 18px;
    border: 1px solid transparent;
    margin-bottom: 16px;
    background: rgba(255, 255, 255, 0.02);
    backdrop-filter: blur(10px);
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    position: relative;
    overflow: hidden;
    cursor: default;
}

.why-us-feature-item::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 3px;
    height: 0;
    background: linear-gradient(to bottom, #d4af5d, transparent);
    border-radius: 0 4px 4px 0;
    transition: height 0.4s ease;
}

.why-us-feature-item:hover {
    background: rgba(212, 175, 93, 0.05);
    border-color: rgba(212, 175, 93, 0.2);
    transform: translateX(-6px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.3);
}

.why-us-feature-item:hover::before {
    height: 100%;
}

/* ---- Icon Ring ---- */
.why-us-icon-ring {
    position: relative;
    width: 62px;
    height: 62px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.why-us-icon-pulse {
    position: absolute;
    inset: -6px;
    border-radius: 50%;
    border: 1px solid rgba(212, 175, 93, 0.15);
    transition: all 0.4s ease;
}

.why-us-feature-item:hover .why-us-icon-pulse {
    border-color: rgba(212, 175, 93, 0.5);
    inset: -10px;
    box-shadow: 0 0 20px rgba(212, 175, 93, 0.2);
}

.why-us-icon-circle {
    width: 62px;
    height: 62px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(212, 175, 93, 0.15), rgba(212, 175, 93, 0.05));
    border: 1.5px solid rgba(212, 175, 93, 0.35);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    color: #d4af5d;
    transition: all 0.4s ease;
    position: relative;
    z-index: 1;
}

.why-us-feature-item:hover .why-us-icon-circle {
    background: linear-gradient(135deg, #d4af5d, #b8944a);
    color: #000;
    border-color: transparent;
    box-shadow: 0 8px 25px rgba(212, 175, 93, 0.4);
    transform: rotate(10deg) scale(1.08);
}

/* ---- Feature Body ---- */
.why-us-feature-body {
    flex: 1;
}

.why-us-feature-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 8px;
    flex-wrap: wrap;
    gap: 8px;
}

.why-us-feature-title {
    font-size: 16px;
    font-weight: 700;
    color: #fff;
    margin: 0;
    transition: color 0.3s;
}

.why-us-feature-item:hover .why-us-feature-title {
    color: #d4af5d;
}

.why-us-feature-tag {
    font-size: 11px;
    font-weight: bold;
    color: #d4af5d;
    background: rgba(212, 175, 93, 0.1);
    border: 1px solid rgba(212, 175, 93, 0.25);
    padding: 3px 10px;
    border-radius: 50px;
    white-space: nowrap;
}

.why-us-feature-desc {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.5);
    line-height: 1.8;
    margin-bottom: 12px;
}


.why-us-feature-bar {
    height: 3px;
    background: rgba(255, 255, 255, 0.06);
    border-radius: 10px;
    overflow: hidden;
}

.why-us-feature-bar-fill {
    height: 100%;
    background: linear-gradient(to left, #d4af5d, rgba(212, 175, 93, 0.3));
    border-radius: 10px;
    width: 0;
    transition: width 1.2s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.3s;
}


.why-us-stats-row {
    display: flex;
    align-items: stretch;
    justify-content: center;
    border-top: 1px solid rgba(212, 175, 93, 0.12);
    flex-wrap: wrap;
    gap: 0;
}

.why-us-stat-card {
    flex: 1;
    min-width: 160px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 6px;
    padding: 30px 20px;
    text-align: center;
    position: relative;
    transition: background 0.3s;
    cursor: default;
}

.why-us-stat-card:hover {
    background: rgba(212, 175, 93, 0.05);
}

.why-us-stat-icon {
    font-size: 24px;
    color: #d4af5d;
    margin-bottom: 4px;
    transition: transform 0.4s ease;
}

.why-us-stat-card:hover .why-us-stat-icon {
    transform: scale(1.3) rotate(-8deg);
}

.why-us-stat-num {
    font-size: 32px;
    font-weight: 900;
    background: linear-gradient(135deg, #fff 40%, #d4af5d);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
}

.why-us-stat-lbl {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.45);
    letter-spacing: 0.5px;
}

.why-us-stat-divider {
    width: 1px;
    background: linear-gradient(to bottom, transparent, rgba(212, 175, 93, 0.2), transparent);
    align-self: stretch;
}

html.light-mode .why-us-luxury-section {
    background: linear-gradient(160deg, #f4f0e8 0%, #fdfaf4 50%, #ede9dd 100%);
    border-color: rgba(180, 140, 20, 0.15);
}

html.light-mode .why-us-grid-overlay {
    background-image:
        linear-gradient(rgba(0, 0, 0, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0, 0, 0, 0.03) 1px, transparent 1px);
}

html.light-mode .why-us-orb-1 {
    opacity: 0.08;
}

html.light-mode .why-us-orb-2 {
    opacity: 0.05;
}

html.light-mode .why-us-eyebrow {
    background: rgba(180, 140, 20, 0.12);
    border-color: rgba(180, 140, 20, 0.4);
    color: #8a6a00;
}

html.light-mode .why-us-main-title {
    color: #111 !important;
}

html.light-mode .why-us-mini-stat {
    background: rgba(255, 255, 255, 0.9);
    border-color: rgba(180, 140, 20, 0.3);
}

html.light-mode .why-us-mini-val {
    color: #111;
}

html.light-mode .why-us-mini-lbl {
    color: rgba(0, 0, 0, 0.45);
}

html.light-mode .why-us-feature-item {
    background: rgba(255, 255, 255, 0.6);
    border-color: rgba(0, 0, 0, 0.06);
}

html.light-mode .why-us-feature-item:hover {
    background: rgba(212, 175, 93, 0.08);
    border-color: rgba(180, 140, 20, 0.2);
}

html.light-mode .why-us-feature-title {
    color: #111;
}

html.light-mode .why-us-feature-desc {
    color: rgba(0, 0, 0, 0.5);
}

html.light-mode .why-us-icon-circle {
    background: rgba(180, 140, 20, 0.1);
    border-color: rgba(180, 140, 20, 0.3);
}

html.light-mode .why-us-feature-bar {
    background: rgba(0, 0, 0, 0.07);
}

html.light-mode .why-us-stats-row {
    border-color: rgba(180, 140, 20, 0.15);
}

html.light-mode .why-us-stat-card:hover {
    background: rgba(180, 140, 20, 0.05);
}

html.light-mode .why-us-stat-num {
    background: linear-gradient(135deg, #111 40%, #8a6a00);
    -webkit-background-clip: text;
    background-clip: text;
}

html.light-mode .why-us-stat-lbl {
    color: rgba(0, 0, 0, 0.4);
}

html.light-mode .why-us-stat-divider {
    background: linear-gradient(to bottom, transparent, rgba(180, 140, 20, 0.2), transparent);
}

html.light-mode .why-us-title-line {
    background: linear-gradient(to right, transparent, #8a6a00, transparent);
}

@media (max-width: 991px) {
    .why-us-img-frame {
        margin-bottom: 20px;
    }

    .why-us-main-img {
        height: 320px;
    }

    .why-us-exp-badge {
        left: -5px;
        bottom: 20px;
    }

    .why-us-mini-stat {
        top: 15px;
        left: -5px;
    }

    .why-us-stats-row {
        gap: 10px;
    }

    .why-us-stat-divider {
        display: none;
    }

    .why-us-stat-card {
        min-width: 140px;
        padding: 20px 10px;
    }
}

@media (max-width: 575px) {
    .why-us-feature-item {
        padding: 18px 16px;
    }

    .why-us-stat-num {
        font-size: 24px;
    }

    .why-us-stats-row {
        flex-wrap: wrap;
    }

    .why-us-stat-card {
        flex: 1 1 45%;
    }
}

.luxury-header-line {
    position: relative;
    padding-bottom: 20px;
}

.luxury-header-line::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: var(--luxury-gold);
    border-radius: 2px;
}

.why-us-description-text {
    max-width: 520px;
}
.description-content {
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 15;
    line-clamp: 15;
    overflow: hidden;
    text-overflow: ellipsis;
    transition: all 0.3s ease;
}

.description-content.expanded {
    display: block;
    -webkit-line-clamp: unset;
    line-clamp: unset;
    overflow: visible;
}

.read-more-btn {
    background: transparent;
    border: none;
    color: var(--luxury-gold, #d4af5d);
    font-weight: bold;
    cursor: pointer;
    padding: 10px 0;
    margin-top: 10px;
    font-size: 14px;
    transition: color 0.3s;
    display: none;

}

.read-more-btn:hover {
    color: #fff;
}

html.light-mode .read-more-btn:hover {
    color: #000;
}

.section-floating-nav {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    transform: translateY(50%);
    z-index: 10;
    overflow-x: auto;
    overflow-y: hidden;
    scroll-padding-inline: 1rem;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
}

.section-floating-nav::-webkit-scrollbar {
    display: none;
}

.section-floating-nav__track {
    display: flex;
    align-items: center;
    flex-wrap: nowrap;
    gap: 1rem;
    width: max-content;
    min-width: 100%;
    justify-content: center;
    padding-inline: 1rem;
}

.section-floating-nav .btn-hero-link,
.section-floating-nav .btn-advisor {
    flex: 0 0 auto;
    border: 1px solid rgba(212, 175, 93, 0.4);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.5);
}

html.light-mode .section-floating-nav .btn-hero-link,
html.light-mode .section-floating-nav .btn-advisor {
    background: #fff;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.btn-collaboration-hero {
    display: inline-flex;
    align-items: center;
    gap: 15px;
    padding: 15px 35px;
    background: #0f3d3e;
    color: var(--luxury-gold);
    text-decoration: none;
    border: none;
    border-radius: 50px;
    font-weight: bold;
    transition: 0.3s;
    box-shadow: 0 10px 25px rgba(212, 175, 93, 0.2);
    cursor: pointer;
}

.btn-collaboration-hero:hover {
    background: #0f3d3e;
    color: var(--luxury-gold);
    box-shadow: 0 15px 35px rgba(212, 175, 93, 0.4);
}

/* Collaboration offcanvas — dark is default (html without .light-mode) */
#offcanvasCollaboration.collaboration-offcanvas {
    --bs-offcanvas-height: min(92vh, 760px);
    --bs-offcanvas-bg: #0f3d3e;
    color: #fff;
    border-radius: 24px 24px 0 0;
    border-top: 1px solid rgba(212, 175, 93, 0.25);
    box-shadow: 0 -20px 60px rgba(0, 0, 0, 0.45);
    display: flex;
    flex-direction: column;
}

html.light-mode #offcanvasCollaboration.collaboration-offcanvas {
    --bs-offcanvas-bg: #fff;
    color: #0f3d3e;
    border-top-color: rgba(10, 29, 59, 0.12);
    box-shadow: 0 -20px 50px rgba(0, 0, 0, 0.12);
}

#offcanvasCollaboration .offcanvas-header,
#offcanvasCollaboration .offcanvas-footer {
    background: transparent;
    border-color: rgba(255, 255, 255, 0.1) !important;
}

#offcanvasCollaboration .offcanvas-header {
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

#offcanvasCollaboration .offcanvas-footer {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

html.light-mode #offcanvasCollaboration .offcanvas-header,
html.light-mode #offcanvasCollaboration .offcanvas-footer {
    border-color: rgba(0, 0, 0, 0.08) !important;
}

#offcanvasCollaboration .offcanvas-title {
    color: var(--luxury-gold);
}

#offcanvasCollaboration .btn-close {
    filter: invert(1) !important;
    opacity: 0.85;
}

html.light-mode #offcanvasCollaboration .btn-close {
    filter: none !important;
    opacity: 0.55;
}

.collaboration-offcanvas-form {
    min-height: 0;
    flex: 1 1 auto;
}

#offcanvasCollaboration .collaboration-form-intro {
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.65);
}

html.light-mode #offcanvasCollaboration .collaboration-form-intro {
    color: rgba(0, 0, 0, 0.65);
}

#offcanvasCollaboration .collaboration-input-group label {
    display: block;
    color: rgba(255, 255, 255, 0.75);
    margin-bottom: 8px;
    font-size: 14px;
    padding-inline-start: 5px;
}

html.light-mode #offcanvasCollaboration .collaboration-input-group label {
    color: rgba(0, 0, 0, 0.65);
}

#offcanvasCollaboration .collaboration-input {
    width: 100%;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 12px;
    padding: 14px 18px;
    color: #fff;
    font-size: 15px;
    transition: 0.3s;
}

html.light-mode #offcanvasCollaboration .collaboration-input {
    background: rgba(0, 0, 0, 0.03);
    border-color: rgba(0, 0, 0, 0.1);
    color: #0f3d3e;
}

#offcanvasCollaboration .collaboration-input:focus {
    outline: none;
    background: rgba(255, 255, 255, 0.07);
    border-color: var(--luxury-gold);
    box-shadow: 0 0 15px rgba(212, 175, 93, 0.15);
    color: #fff;
}

html.light-mode #offcanvasCollaboration .collaboration-input:focus {
    background: #fff;
    color: #0f3d3e;
}

#offcanvasCollaboration .collaboration-input::placeholder {
    color: rgba(255, 255, 255, 0.3);
}

html.light-mode #offcanvasCollaboration .collaboration-input::placeholder {
    color: rgba(0, 0, 0, 0.35);
}

#offcanvasCollaboration .collaboration-textarea {
    min-height: 140px;
    resize: vertical;
}

#offcanvasCollaboration .collaboration-file-input {
    padding: 10px 14px;
    color-scheme: dark;
}

html.light-mode #offcanvasCollaboration .collaboration-file-input {
    color-scheme: light;
}

#offcanvasCollaboration .collaboration-input-hint {
    color: rgba(255, 255, 255, 0.45);
    font-size: 13px;
}

html.light-mode #offcanvasCollaboration .collaboration-input-hint {
    color: rgba(0, 0, 0, 0.5);
}

#offcanvasCollaboration .alert-danger {
    background: rgba(220, 53, 69, 0.15);
    color: #f8d7da;
}

html.light-mode #offcanvasCollaboration .alert-danger {
    background: rgba(220, 53, 69, 0.1);
    color: #842029;
}

#offcanvasCollaboration .btn-collaboration-submit {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background: linear-gradient(135deg, var(--luxury-gold), #b8944a);
    color: #000;
    font-weight: 700;
    border: none;
    padding: 16px 28px;
    border-radius: 14px;
    font-size: 16px;
    transition: 0.35s;
    box-shadow: 0 10px 20px rgba(212, 175, 93, 0.2);
    cursor: pointer;
}

#offcanvasCollaboration .btn-collaboration-submit:hover {
    transform: translateY(-1px);
    box-shadow: 0 15px 30px rgba(212, 175, 93, 0.3);
    filter: brightness(1.05);
    color: #000;
}

html[dir="ltr"] #offcanvasCollaboration.collaboration-offcanvas {
    text-align: left;
}

html[dir="rtl"] #offcanvasCollaboration.collaboration-offcanvas {
    text-align: right;
}

#offcanvasCollaboration .collaboration-field-error {
    display: block;
    margin-top: 6px;
    font-size: 13px;
    line-height: 1.5;
    color: #f8a5a5;
}

html.light-mode #offcanvasCollaboration .collaboration-field-error {
    color: #b02a37;
}

#offcanvasCollaboration .collaboration-input.is-invalid {
    border-color: #dc3545;
    box-shadow: 0 0 0 2px rgba(220, 53, 69, 0.15);
}

html.light-mode #offcanvasCollaboration .collaboration-input.is-invalid {
    border-color: #dc3545;
}

#offcanvasCollaboration .collaboration-input-group.has-error label {
    color: #f8a5a5;
}

html.light-mode #offcanvasCollaboration .collaboration-input-group.has-error label {
    color: #b02a37;
}