/* =========================
GOOGLE FONT
========================= */

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:wght@500;600;700&family=Inter:wght@400;500;600;700&display=swap');

/* =========================
GLOBAL
========================= */

body {
    margin: 0;
    padding: 0;
    background: #000;
}
.cust-container{
    max-width: 1480px;
    padding: 30px;
}
/* =========================
HERO SECTION
========================= */

.gold-emi-hero {
    position: relative;
    overflow: hidden;
    background:
        radial-gradient(circle at top right, rgba(255, 194, 59, 0.22), transparent 32%),
        radial-gradient(circle at bottom left, rgba(255, 194, 59, 0.08), transparent 25%),
        #0c0c0f;
}

.gold-emi-hero__wrapper {
    position: relative;
    min-height: 640px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 70px 80px;
    overflow: hidden;
}

/* =========================
LEFT CONTENT
========================= */

.gold-emi-hero__content {
    width: 48%;
    position: relative;
    z-index: 5;
}

.gold-emi-hero__tag {
    color: #edce09;
    font-size: 24px;
    font-weight: 500;
    font-family: 'Inter', sans-serif;
    margin-bottom: 28px;
    letter-spacing: 0.2px;
}
.head-title{
    color: #f4bf45;
    font-size: 24px;
    font-family: 'Cormorant Garamond', serif;
    font-weight: 900;

}

.gold-emi-hero__title {
    font-family: 'Cormorant Garamond', serif;
    color: #ffffff;
    font-size: 82px;
    line-height: 0.95;
    font-weight: 700;
    margin: 0 0 34px;
}

.gold-emi-hero__title span {
    display: block;
}

.gold-emi-hero__desc {
    color: rgba(255,255,255,0.88);
    font-size: 28px;
    line-height: 1.7;
    font-family: 'Inter', sans-serif;
    margin-bottom: 45px;
    font-weight: 400;
}

/* =========================
BUTTONS
========================= */

.gold-emi-hero__btns {
    display: flex;
    gap: 24px;
    align-items: center;
}

.gold-emi-btn {
    height: 78px;
    padding: 0 42px;
    border-radius: 12px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    font-size: 24px;
    font-weight: 700;
    font-family: 'Inter', sans-serif;
    transition: all 0.3s ease;
}

.gold-emi-btn--primary {
    background: linear-gradient(180deg, #ffcf57 0%, #d69b19 100%);
    color: #1b1b1b;
    box-shadow:
        inset 0 1px 1px rgba(255,255,255,0.45),
        0 8px 24px rgba(255, 191, 52, 0.22);
}

.gold-emi-btn--primary:hover {
    color: #1b1b1b;
    transform: translateY(-2px);
}

.gold-emi-btn--secondary {
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.35);
    color: #ffffff;
}

.gold-emi-btn--secondary:hover {
    color: #ffffff;
    background: rgba(255,255,255,0.08);
}

/* =========================
RIGHT IMAGE
========================= */

.gold-emi-hero__image {
    width: 52%;
    position: relative;
    display: flex;
    justify-content: flex-end;
}

.gold-emi-hero__image img {
    width: 100%;
    max-width: 860px;
    object-fit: contain;
    display: block;
    position: relative;
    z-index: 2;
}

/* =========================
EMI CARD
========================= */

.gold-emi-card {
    position: absolute;
    /* left: -20px; */
    bottom: 35%;
    width: 340px;
    padding: 28px 30px;
    border-radius: 18px;
    background:
        linear-gradient(180deg, rgba(28,28,30,0.96) 0%, rgba(12,12,12,0.5) 100%);
    border: 2px solid rgba(255, 196, 73, 0.75);
    box-shadow:
        0 0 0 1px rgba(255, 196, 73, 0.15),
        0 0 26px rgba(255, 193, 66, 0.24);
    z-index: 5;
}

.gold-emi-card__title {
    display: flex;
    align-items: center;
    gap: 12px;
    color: #f3c04d;
    font-size: 34px;
    font-weight: 700;
    font-family: 'Inter', sans-serif;
    margin-bottom: 18px;
}

.gold-emi-card__icon {
    font-size: 28px;
}

.gold-emi-card__price {
    color: #f5d089;
    font-size: 54px;
    font-weight: 700;
    line-height: 1;
    margin-bottom: 18px;
    font-family: 'Inter', sans-serif;
}

.gold-emi-card__line {
    width: 100%;
    height: 1px;
    background: rgba(255, 201, 87, 0.35);
    margin-bottom: 18px;
}

.gold-emi-card__monthly {
    color: rgba(255,255,255,0.9);
    font-size: 28px;
    margin-bottom: 12px;
    font-family: 'Inter', sans-serif;
}

.gold-emi-card__emi {
    color: #ffffff;
    font-size: 42px;
    font-weight: 700;
    line-height: 1.1;
    font-family: 'Inter', sans-serif;
}

/* =========================
RESPONSIVE
========================= */

@media (max-width: 1600px) {

    .gold-emi-hero__title {
        font-size: 68px;
    }

    .gold-emi-hero__desc {
        font-size: 22px;
    }

    .gold-emi-btn {
        height: 66px;
        font-size: 20px;
    }

    .gold-emi-card {
        width: 290px;
    }

    .gold-emi-card__title {
        font-size: 28px;
    }

    .gold-emi-card__price {
        font-size: 46px;
    }

    .gold-emi-card__emi {
        font-size: 34px;
    }
}

@media (max-width: 1199px) {

    .gold-emi-hero__wrapper {
        padding: 60px 40px;
        flex-direction: column;
        text-align: center;
    }

    .gold-emi-hero__content,
    .gold-emi-hero__image {
        width: 100%;
    }

    .gold-emi-hero__btns {
        justify-content: center;
    }

    .gold-emi-hero__image {
        margin-top: 40px;
        justify-content: center;
    }

    .gold-emi-card {
        left: 50%;
        transform: translateX(-50%);
        bottom: 20px;
    }
}

@media (max-width: 767px) {

    .gold-emi-hero__wrapper {
        min-height: auto;
        padding: 50px 20px 80px;
    }

    .gold-emi-hero__tag {
        font-size: 16px;
        margin-bottom: 18px;
    }

    .gold-emi-hero__title {
        font-size: 48px;
        line-height: 1;
        margin-bottom: 24px;
    }

    .gold-emi-hero__desc {
        font-size: 16px;
        line-height: 1.6;
        margin-bottom: 28px;
    }

    .gold-emi-hero__btns {
        flex-direction: column;
        gap: 14px;
    }

    .gold-emi-btn {
        width: 100%;
        height: 56px;
        font-size: 16px;
    }

    .gold-emi-card {
        width: 240px;
        padding: 20px;
        bottom: -20px;
    }

    .gold-emi-card__title {
        font-size: 22px;
    }

    .gold-emi-card__price {
        font-size: 36px;
    }

    .gold-emi-card__monthly {
        font-size: 18px;
    }

    .gold-emi-card__emi {
        font-size: 26px;
    }
}

/* =========================
HOW EMI WORKS SECTION
========================= */

.gold-emi-work {
    position: relative;
    background: #f8f5ef;
    padding: 48px 0 42px;
    overflow: hidden;
}

/* =========================
HEADING
========================= */

.gold-emi-work__heading {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 46px;
    gap: 18px;
}

.gold-emi-work__line {
    width: 285px;
    height: 1px;
    background: #d6bc7b;
}

.gold-emi-work__title {
    margin: 0;
    color: #20202a;
    font-size: 32px;
    font-weight: 700;
    line-height: 1;
    font-family: 'Cormorant Garamond', serif;
}

/* =========================
ROW
========================= */

.gold-emi-work__row {
    position: relative;
    z-index: 3;
}

/* =========================
CONNECTOR
========================= */

.gold-emi-work__connector {
    position: absolute;
    top: 116px;
    left: 50%;
    transform: translateX(-50%);
    width: 76%;
    height: 14px;
    z-index: 1;
}

.gold-emi-work__connector::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 0;
    width: 100%;
    height: 10px;
    transform: translateY(-50%);
    background:
        linear-gradient(
            90deg,
            rgba(219, 189, 118, 0.05) 0%,
            rgba(219, 189, 118, 0.45) 50%,
            rgba(219, 189, 118, 0.05) 100%
        );
}

/* =========================
ARROWS
========================= */

.gold-emi-work__arrow {
    position: absolute;
    top: -11px;
    color: #c9982c;
    font-size: 34px;
    line-height: 1;
}

.gold-emi-work__arrow--one {
    left: 32%;
}

.gold-emi-work__arrow--two {
    right: 31%;
}

/* =========================
STEP
========================= */

.gold-emi-step {
    position: relative;
    text-align: center;
    z-index: 5;
}

.gold-emi-step__top {
    height: 82px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 18px;
}

.gold-emi-step__top img {
    max-width: 120px;
    max-height: 82px;
    object-fit: contain;
}

/* =========================
TITLE
========================= */

.gold-emi-step__title {
    margin: 0 0 12px;
    color: #20202a;
    font-size: 18px;
    font-weight: 700;
    line-height: 1.2;
    font-family: 'Inter', sans-serif;
}

/* =========================
DIVIDER
========================= */

.gold-emi-step__divider {
    width: 118px;
    height: 1px;
    background: #d7c49a;
    margin: 0 auto 12px;
}

/* =========================
DESC
========================= */

.gold-emi-step__desc {
    margin: 0;
    color: #30303a;
    font-size: 14px;
    line-height: 1.4;
    font-weight: 400;
    font-family: 'Inter', sans-serif;
}

/* =========================
RESPONSIVE
========================= */

@media (max-width: 991px) {

    .gold-emi-work {
        padding: 42px 0;
    }

    .gold-emi-work__line {
        width: 140px;
    }

    .gold-emi-work__title {
        font-size: 26px;
    }

    .gold-emi-work__connector {
        display: none;
    }

    .gold-emi-step {
        margin-bottom: 35px;
    }
}

@media (max-width: 767px) {

    .gold-emi-work {
        padding: 36px 0 18px;
    }

    .gold-emi-work__heading {
        gap: 10px;
        margin-bottom: 34px;
    }

    .gold-emi-work__line {
        width: 60px;
    }

    .gold-emi-work__title {
        font-size: 22px;
        white-space: nowrap;
    }

    .gold-emi-step__top {
        height: auto;
        margin-bottom: 16px;
    }

    .gold-emi-step__top img {
        max-width: 90px;
    }

    .gold-emi-step__title {
        font-size: 17px;
    }

    .gold-emi-step__desc {
        font-size: 13px;
    }
}
/* =========================
WHY CHOOSE EMI SECTION
========================= */

.gold-emi-benefits {
    position: relative;
    background:
        radial-gradient(circle at top left,
        rgba(255, 196, 74, 0.06),
        transparent 24%),
        radial-gradient(circle at bottom right,
        rgba(255, 196, 74, 0.04),
        transparent 24%),
        #111214;
    padding: 42px 0 36px;
    overflow: hidden;
}

/* =========================
TEXTURE OVERLAY
========================= */

.gold-emi-benefits::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image:
        radial-gradient(rgba(255,255,255,0.04) 1px, transparent 1px);
    background-size: 3px 3px;
    opacity: 0.35;
    pointer-events: none;
}

/* =========================
HEADING
========================= */

.gold-emi-benefits__heading {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 18px;
    margin-bottom: 28px;
}

.gold-emi-benefits__line {
    width: 285px;
    height: 1px;
    background: linear-gradient(
        90deg,
        rgba(196, 151, 53, 0),
        rgba(196, 151, 53, 0.9),
        rgba(196, 151, 53, 0)
    );
}

.gold-emi-benefits__title {
    margin: 0;
    color: #f3e5c1;
    font-size: 30px;
    line-height: 1;
    font-weight: 700;
    font-family: 'Cormorant Garamond', serif;
}

/* =========================
GRID
========================= */

.gold-emi-benefits__grid {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 10px;
    max-width: 1080px;
    margin: 0 auto;
}

/* =========================
BOX
========================= */

.gold-emi-benefit-box {
    position: relative;
    min-height: 112px;
    background:
        linear-gradient(
            180deg,
            rgba(34, 34, 36, 0.96) 0%,
            rgba(21, 21, 22, 0.98) 100%
        );
    border: 1px solid rgba(183, 143, 60, 0.42);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 18px 12px 14px;
    transition: all 0.3s ease;
}

/* =========================
BOTTOM CENTER ALIGNMENT
========================= */

.gold-emi-benefit-box:nth-child(5) {
    grid-column: 1 / 2;
    margin-left: 64px;
}

.gold-emi-benefit-box:nth-child(6) {
    grid-column: 2 / 3;
    margin-left: 22px;
}

.gold-emi-benefit-box:nth-child(7) {
    grid-column: 3 / 4;
    margin-left: -20px;
}

/* =========================
HOVER
========================= */

.gold-emi-benefit-box:hover {
    transform: translateY(-2px);
    border-color: rgba(255, 198, 72, 0.8);
    box-shadow: 0 0 22px rgba(255, 196, 74, 0.14);
}

/* =========================
ICON
========================= */

.gold-emi-benefit-box__icon {
    width: 42px;
    height: 42px;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.gold-emi-benefit-box__icon img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

/* =========================
TITLE
========================= */

.gold-emi-benefit-box__title {
    margin: 0;
    color: #ffffff;
    font-size: 15px;
    line-height: 1.2;
    font-weight: 600;
    text-align: center;
    font-family: 'Inter', sans-serif;
}

/* =========================
RESPONSIVE
========================= */

@media (max-width: 991px) {

    .gold-emi-benefits {
        padding: 40px 0;
    }

    .gold-emi-benefits__line {
        width: 120px;
    }

    .gold-emi-benefits__grid {
        grid-template-columns: repeat(2, 1fr);
        max-width: 700px;
    }

    .gold-emi-benefit-box:nth-child(5),
    .gold-emi-benefit-box:nth-child(6),
    .gold-emi-benefit-box:nth-child(7) {
        grid-column: auto;
        margin-left: 0;
    }
}

@media (max-width: 767px) {

    .gold-emi-benefits {
        padding: 34px 0 30px;
    }

    .gold-emi-benefits__heading {
        gap: 10px;
        margin-bottom: 22px;
    }

    .gold-emi-benefits__line {
        width: 52px;
    }

    .gold-emi-benefits__title {
        font-size: 24px;
        white-space: nowrap;
    }

    .gold-emi-benefits__grid {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .gold-emi-benefit-box {
        min-height: 96px;
        padding: 16px 10px;
    }

    .gold-emi-benefit-box__icon {
        width: 36px;
        height: 36px;
        margin-bottom: 10px;
    }

    .gold-emi-benefit-box__title {
        font-size: 14px;
    }
}
/* =========================
EASY ELIGIBILITY SECTION
========================= */

.gold-emi-eligibility {
    position: relative;
    padding: 44px 0;
    background:
        radial-gradient(circle at top right,
        rgba(255, 196, 74, 0.06),
        transparent 24%),
        radial-gradient(circle at bottom left,
        rgba(255, 196, 74, 0.05),
        transparent 24%),
        #121315;
    overflow: hidden;
}

/* =========================
TEXTURE
========================= */

.gold-emi-eligibility::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image:
        radial-gradient(rgba(255,255,255,0.035) 1px, transparent 1px);
    background-size: 3px 3px;
    opacity: 0.4;
    pointer-events: none;
}

/* =========================
LEFT PRODUCT CARD
========================= */

.gold-emi-product-card {
    position: relative;
    min-height: 245px;
    border-radius: 14px;
    border: 2px solid rgba(214, 169, 67, 0.75);
    background:
        linear-gradient(
            180deg,
            rgba(32,32,34,0.98) 0%,
            rgba(15,15,16,0.98) 100%
        );
    overflow: hidden;
    box-shadow:
        0 0 18px rgba(255, 191, 73, 0.12),
        0 0 0 1px rgba(255, 191, 73, 0.08);
}

/* =========================
LEFT IMAGE
========================= */

.gold-emi-product-card__jewellery {
    position: absolute;
    left: -110px;
    bottom: -4px;
    width: 210px;
    z-index: 1;
}

.gold-emi-product-card__jewellery img {
    width: 100%;
    display: block;
}

/* =========================
CONTENT
========================= */

.gold-emi-product-card__content {
    position: relative;
    z-index: 2;
    padding: 26px 34px 26px 150px;
}

/* =========================
TITLE
========================= */

.gold-emi-product-card__title {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #f3dfb2;
    font-size: 20px;
    line-height: 1;
    font-weight: 700;
    font-family: 'Cormorant Garamond', serif;
    margin-bottom: 16px;
}

.gold-emi-product-card__title-icon {
    width: 24px;
    height: 24px;
    flex-shrink: 0;
}

.gold-emi-product-card__title-icon img {
    width: 100%;
    display: block;
}

/* =========================
DIVIDER
========================= */

.gold-emi-product-card__divider {
    width: 100%;
    height: 1px;
    background: rgba(214, 169, 67, 0.4);
    margin-bottom: 16px;
}

/* =========================
PRICE ROW
========================= */

.gold-emi-product-card__price-row {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 14px;
}

.gold-emi-product-card__price-row span {
    color: #ffffff;
    font-size: 17px;
    font-weight: 500;
    font-family: 'Inter', sans-serif;
}

.gold-emi-product-card__price-row strong {
    color: #ffffff;
    font-size: 22px;
    line-height: 1;
    font-weight: 800;
    font-family: 'Inter', sans-serif;
}

/* =========================
EMI ROW
========================= */

.gold-emi-product-card__emi-row {
    display: flex;
    align-items: flex-end;
    gap: 8px;
    margin-bottom: 24px;
}

.gold-emi-product-card__emi-row span {
    color: #ffffff;
    font-size: 18px;
    font-weight: 700;
    font-family: 'Inter', sans-serif;
}

.gold-emi-product-card__emi-row strong {
    color: #ffffff;
    font-size: 42px;
    line-height: 0.9;
    font-weight: 800;
    font-family: 'Inter', sans-serif;
}

.gold-emi-product-card__emi-row small {
    color: #ffffff;
    font-size: 15px;
    font-weight: 600;
    margin-bottom: 4px;
    font-family: 'Inter', sans-serif;
}

/* =========================
BUTTON
========================= */

.gold-emi-product-card__btn {
    width: 150px;
    height: 44px;
    border-radius: 6px;
    background:
        linear-gradient(
            180deg,
            #ffd25f 0%,
            #d89e20 100%
        );
    color: #1a1a1a;
    font-size: 15px;
    font-weight: 700;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    font-family: 'Inter', sans-serif;
    box-shadow:
        inset 0 1px 1px rgba(255,255,255,0.5),
        0 4px 12px rgba(255, 193, 74, 0.18);
}

.gold-emi-product-card__btn:hover {
    color: #1a1a1a;
    transform: translateY(-1px);
}

/* =========================
RIGHT SIDE
========================= */

.gold-emi-eligibility-content {
    position: relative;
    padding-left: 44px;
}

/* =========================
HEADING
========================= */

.gold-emi-eligibility-content__heading {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 34px;
}

.gold-emi-eligibility-content__line {
    width: 120px;
    height: 1px;
    background: linear-gradient(
        90deg,
        rgba(205, 162, 67, 0),
        rgba(205, 162, 67, 1)
    );
}

.gold-emi-eligibility-content__title {
    margin: 0;
    color: #f1dfba;
    font-size: 32px;
    line-height: 1;
    font-weight: 700;
    font-family: 'Cormorant Garamond', serif;
}

/* =========================
FEATURES
========================= */

.gold-emi-eligibility-list {
    display: flex;
    flex-wrap: wrap;
    gap: 26px 48px;
    margin-bottom: 26px;
}

.gold-emi-eligibility-item {
    display: flex;
    align-items: center;
    gap: 12px;
    min-width: 240px;
}

/* =========================
ICON
========================= */

.gold-emi-eligibility-item__icon {
    width: 28px;
    height: 28px;
    flex-shrink: 0;
}

.gold-emi-eligibility-item__icon img {
    width: 100%;
    display: block;
}

/* =========================
TEXT
========================= */

.gold-emi-eligibility-item__text {
    color: #ffffff;
    font-size: 18px;
    line-height: 1.3;
    font-weight: 500;
    font-family: 'Inter', sans-serif;
}

/* =========================
APPROVAL
========================= */

.gold-emi-eligibility-content__approval {
    width: fit-content;
    color: #ffffff;
    font-size: 18px;
    font-weight: 500;
    padding-bottom: 8px;
    border-bottom: 1px solid rgba(255,255,255,0.35);
    font-family: 'Inter', sans-serif;
}

/* =========================
RESPONSIVE
========================= */

@media (max-width: 991px) {

    .gold-emi-eligibility {
        padding: 40px 0;
    }

    .gold-emi-product-card {
        margin-bottom: 40px;
    }

    .gold-emi-eligibility-content {
        padding-left: 0;
    }
}

@media (max-width: 767px) {

    .gold-emi-eligibility {
        padding: 34px 0;
    }

    .gold-emi-product-card {
        min-height: auto;
    }

    .gold-emi-product-card__jewellery {
        width: 120px;
        left: -52px;
    }

    .gold-emi-product-card__content {
        padding: 24px 20px 24px 78px;
    }

    .gold-emi-product-card__title {
        font-size: 18px;
    }

    .gold-emi-product-card__price-row {
        flex-wrap: wrap;
        gap: 4px;
    }

    .gold-emi-product-card__price-row strong {
        font-size: 20px;
    }

    .gold-emi-product-card__emi-row {
        flex-wrap: wrap;
        gap: 6px;
    }

    .gold-emi-product-card__emi-row strong {
        font-size: 30px;
    }

    .gold-emi-product-card__btn {
        width: 100%;
    }

    .gold-emi-eligibility-content__heading {
        gap: 10px;
        margin-bottom: 26px;
    }

    .gold-emi-eligibility-content__line {
        width: 50px;
    }

    .gold-emi-eligibility-content__title {
        font-size: 24px;
    }

    .gold-emi-eligibility-list {
        gap: 18px;
    }

    .gold-emi-eligibility-item {
        min-width: 100%;
    }

    .gold-emi-eligibility-item__text {
        font-size: 16px;
    }

    .gold-emi-eligibility-content__approval {
        font-size: 16px;
    }
}

/* =========================
TRUSTED CUSTOMERS SECTION
========================= */

.gold-emi-trust {
    position: relative;
    background: #f8f5ef;
    padding: 56px  18px;
    overflow: hidden;
}

/* =========================
SUBTLE TEXTURE
========================= */

.gold-emi-trust::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image:
        radial-gradient(rgba(0,0,0,0.018) 1px, transparent 1px);
    background-size: 3px 3px;
    opacity: 0.45;
    pointer-events: none;
}

/* =========================
HEADING
========================= */

.gold-emi-trust__heading {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    margin-bottom: 24px;
}

.gold-emi-trust__line {
    width: 275px;
    height: 1px;
    background: #d8be7c;
}

.gold-emi-trust__title {
    margin: 0;
    color: #24242b;
    font-size: 28px;
    line-height: 1;
    font-weight: 700;
    font-family: 'Cormorant Garamond', serif;
    white-space: nowrap;
}

.gold-emi-trust__title span {
    color: #d3a336;
}

/* =========================
WRAPPER
========================= */

.gold-emi-trust__wrapper {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    gap: 72px;
}

/* =========================
ITEM
========================= */

.gold-emi-trust-item {
    position: relative;
    text-align: center;
    min-width: 150px;
}

/* =========================
TOP CONNECTOR LINE
========================= */

.gold-emi-trust-item::before {
    content: "";
    position: absolute;
    top: 20px;
    left: 50%;
    width: 170px;
    height: 1px;
    background: rgba(216, 190, 124, 0.55);
    z-index: -1;
}

.gold-emi-trust-item:last-child::before {
    display: none;
}

/* =========================
ICON BOX
========================= */

.gold-emi-trust-item__icon-box {
    width: 52px;
    height: 52px;
    margin: 0 auto 12px;
    background: #f4efe3;
    border: 1px solid rgba(214, 183, 112, 0.45);
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow:
        inset 0 1px 0 rgba(255,255,255,0.75);
}

.gold-emi-trust-item__icon-box img {
    max-width: 26px;
    max-height: 26px;
    object-fit: contain;
}

/* =========================
TITLE
========================= */

.gold-emi-trust-item__title {
    margin: 0;
    color: #2c2c31;
    font-size: 14px;
    line-height: 1.4;
    font-weight: 600;
    font-family: 'Inter', sans-serif;
    white-space: nowrap;
}

/* =========================
BOTTOM GOLD LINE
========================= */

.gold-emi-trust__bottom-line {
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 6px;
    background:
        linear-gradient(
            90deg,
            #8d6416 0%,
            #f5d26b 50%,
            #8d6416 100%
        );
}

/* =========================
RESPONSIVE
========================= */

@media (max-width: 991px) {

    .gold-emi-trust {
        padding: 34px 0 22px;
    }

    .gold-emi-trust__line {
        width: 120px;
    }

    .gold-emi-trust__wrapper {
        gap: 30px;
        flex-wrap: wrap;
    }

    .gold-emi-trust-item::before {
        display: none;
    }
}

@media (max-width: 767px) {

    .gold-emi-trust {
        padding: 30px 0 18px;
    }

    .gold-emi-trust__heading {
        gap: 10px;
        margin-bottom: 22px;
    }

    .gold-emi-trust__line {
        width: 40px;
    }

    .gold-emi-trust__title {
        font-size: 22px;
        white-space: normal;
        text-align: center;
        line-height: 1.2;
    }

    .gold-emi-trust__wrapper {
        flex-direction: column;
        align-items: center;
        gap: 24px;
    }

    .gold-emi-trust-item {
        min-width: 100%;
    }

    .gold-emi-trust-item__title {
        font-size: 14px;
        white-space: normal;
    }
}
/* =========================
CTA SECTION
========================= */

.gold-emi-cta {
    position: relative;
    padding: 62px 44px;
    background:
        radial-gradient(circle at top right,
        rgba(255, 198, 76, 0.05),
        transparent 24%),
        radial-gradient(circle at bottom left,
        rgba(255, 198, 76, 0.04),
        transparent 24%),
        #111214;
    overflow: hidden;
    text-align: center;
}

/* =========================
TEXTURE OVERLAY
========================= */

.gold-emi-cta::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image:
        radial-gradient(rgba(255,255,255,0.035) 1px, transparent 1px);
    background-size: 3px 3px;
    opacity: 0.4;
    pointer-events: none;
}

/* =========================
HEADING
========================= */

.gold-emi-cta__heading {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 18px;
    margin-bottom: 10px;
}

.gold-emi-cta__line {
    width: 120px;
    height: 1px;
    background: linear-gradient(
        90deg,
        rgba(198, 155, 58, 0),
        rgba(198, 155, 58, 1),
        rgba(198, 155, 58, 0)
    );
}

/* =========================
TITLE
========================= */

.gold-emi-cta__title {
    margin: 0;
    color: #f3e4bf;
    font-size: 30px;
    line-height: 1;
    font-weight: 700;
    font-style: italic;
    font-family: 'Cormorant Garamond', serif;
    white-space: nowrap;
}

/* =========================
DESCRIPTION
========================= */

.gold-emi-cta__desc {
    position: relative;
    z-index: 2;
    margin: 0 0 22px;
    color: rgba(255,255,255,0.92);
    font-size: 15px;
    line-height: 1.4;
    font-weight: 400;
    font-family: 'Inter', sans-serif;
}

/* =========================
BUTTON WRAP
========================= */

.gold-emi-cta__btn-wrap {
    position: relative;
    z-index: 2;
}

/* =========================
BUTTON
========================= */

.gold-emi-cta__btn {
    min-width: 250px;
    height: 52px;
    padding: 0 34px;
    border-radius: 6px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    color: #1d1d1d;
    font-size: 16px;
    line-height: 1;
    font-weight: 700;
    font-family: 'Inter', sans-serif;
    background:
        linear-gradient(
            180deg,
            #ffd45e 0%,
            #d89e1d 100%
        );
    box-shadow:
        inset 0 1px 1px rgba(255,255,255,0.55),
        0 6px 14px rgba(255, 196, 74, 0.18);
    transition: all 0.3s ease;
}

.gold-emi-cta__btn:hover {
    color: #1d1d1d;
    transform: translateY(-2px);
    box-shadow:
        inset 0 1px 1px rgba(255,255,255,0.55),
        0 10px 20px rgba(255, 196, 74, 0.24);
}

/* =========================
RESPONSIVE
========================= */

@media (max-width: 767px) {

    .gold-emi-cta {
        padding: 34px 0 36px;
    }

    .gold-emi-cta__heading {
        gap: 10px;
        margin-bottom: 12px;
    }

    .gold-emi-cta__line {
        width: 40px;
    }

    .gold-emi-cta__title {
        font-size: 22px;
        line-height: 1.2;
        white-space: normal;
    }

    .gold-emi-cta__desc {
        font-size: 14px;
        margin-bottom: 20px;
        padding: 0 10px;
    }

    .gold-emi-cta__btn {
        width: 100%;
        min-width: 100%;
        height: 50px;
        font-size: 15px;
    }
}

/* ===================================
MODAL BUTTON
=================================== */

.gold-modal-btn {
    min-width: 220px;
    height: 56px;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    color: #1d1d1d;
    font-size: 16px;
    font-weight: 700;
    font-family: 'Inter', sans-serif;

    background: linear-gradient(
        180deg,
        #fff8cc 0%,
        #ffe27a 10%,
        #ffc933 22%,
        #f0b400 38%,
        #cf8d00 58%,
        #9c6400 75%,
        #f9db75 100%
    );

    box-shadow:
        inset 0 1px 1px rgba(255,255,255,0.6),
        0 8px 20px rgba(255, 193, 74, 0.22);

    transition: all 0.3s ease;
}

.gold-modal-btn:hover {
    transform: translateY(-2px);
}

/* ===================================
MODAL
=================================== */

.gold-emi-modal .modal-dialog {
    max-width: 520px;
}

.gold-emi-modal .modal-content {
    border: none;
    background: rgba(0, 0, 0, .7);
}

/* ===================================
MODAL CONTENT
=================================== */

.gold-emi-modal__content {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    padding: 42px 36px;

    background:
        radial-gradient(circle at top right,
        rgba(255, 198, 76, 0.08),
        transparent 25%),

        radial-gradient(circle at bottom left,
        rgba(255, 198, 76, 0.06),
        transparent 25%),

        #121315;

    border: 1px solid rgba(255, 198, 76, 0.28);

    box-shadow:
        0 0 0 1px rgba(255, 198, 76, 0.06),
        0 24px 80px rgba(0,0,0,0.65),
        0 0 30px rgba(255, 198, 76, 0.08);
}

/* ===================================
TEXTURE
=================================== */

.gold-emi-modal__content::before {
    content: "";
    position: absolute;
    inset: 0;

    background-image:
        radial-gradient(rgba(255,255,255,0.03) 1px, transparent 1px);

    background-size: 3px 3px;

    opacity: 0.45;
    pointer-events: none;
}

/* ===================================
CLOSE BUTTON
=================================== */

.gold-emi-modal__close {
    position: absolute;
    top: 18px;
    right: 18px;
    width: 42px;
    height: 42px;
    border: none;
    border-radius: 50%;
    z-index: 5;

    display: flex;
    align-items: center;
    justify-content: center;

    background: rgba(255,255,255,0.06);

    color: #ffffff;

    transition: all 0.3s ease;
}

.gold-emi-modal__close:hover {
    background: rgba(255, 198, 76, 0.18);
    color: #f6c24a;
}

/* ===================================
HEADER
=================================== */

.gold-emi-modal__header {
    position: relative;
    z-index: 2;
    text-align: center;
    margin-bottom: 32px;
}

.gold-emi-modal__tag {
    color: #f4c542;
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 12px;
    letter-spacing: 1px;
    font-family: 'Cormorant Garamond', serif;
}

.gold-emi-modal__title {
    margin: 0 0 14px;
    color: #f3e4bf;
    font-size: 32px;
    line-height: 1;
    font-weight: 700;
    font-family: 'Cormorant Garamond', serif;
}

.gold-emi-modal__desc {
    margin: 0;
    color: rgba(255,255,255,0.78);
    font-size: 15px;
    line-height: 1.6;
    font-family: 'Inter', sans-serif;
}

/* ===================================
FORM
=================================== */

.gold-emi-modal__form {
    position: relative;
    z-index: 2;
}

/* ===================================
FIELD
=================================== */

.gold-emi-field {
    margin-bottom: 22px;
}

.gold-emi-field__label {
    display: block;
    color: #f4c542;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 10px;
    font-family: 'Inter', sans-serif;
}

/* ===================================
INPUT
=================================== */

.gold-emi-field__input {
    width: 100%;
    height: 58px;
    border-radius: 10px;
    border: 1px solid rgba(255,255,255,0.12);

    background: rgba(255,255,255,0.04);

    padding: 0 18px;

    color: #ffffff;
    font-size: 15px;
    font-weight: 500;
    font-family: 'Inter', sans-serif;

    transition: all 0.3s ease;
}

.gold-emi-field__input:focus {
    outline: none;

    border-color: rgba(255, 198, 76, 0.65);

    background: rgba(255, 198, 76, 0.85);

    box-shadow:
        0 0 0 3px rgba(255, 198, 76, 0.08);
}

.gold-emi-field__input::placeholder {
    color: rgba(255,255,255,0.4);
}

/* ===================================
SELECT
=================================== */

.gold-emi-field__select {
    appearance: none;

    background-image:
        url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='%23f4c542' viewBox='0 0 16 16'%3E%3Cpath d='M1.5 5.5l6 6 6-6' stroke='%23f4c542' stroke-width='2' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");

    background-repeat: no-repeat;
    background-position: right 18px center;
}

/* ===================================
SUBMIT BUTTON
=================================== */

.gold-emi-submit-btn {
    width: 100%;
    height: 60px;

    border: none;
    border-radius: 10px;

    cursor: pointer;

    color: #1d1d1d;
    font-size: 17px;
    font-weight: 700;
    font-family: 'Inter', sans-serif;

    background: linear-gradient(
        180deg,
        #fff8cc 0%,
        #ffe27a 10%,
        #ffc933 22%,
        #f0b400 38%,
        #cf8d00 58%,
        #9c6400 75%,
        #f9db75 100%
    );

    box-shadow:
        inset 0 1px 1px rgba(255,255,255,0.6),
        0 10px 24px rgba(255, 193, 74, 0.22);

    transition: all 0.3s ease;
}

.gold-emi-submit-btn:hover {
    transform: translateY(-2px);
}

/* ===================================
BACKDROP
=================================== */

.modal-backdrop.show {
    opacity: 0.82;
}

/* ===================================
RESPONSIVE
=================================== */

@media (max-width: 767px) {

    .gold-emi-modal__content {
        padding: 34px 22px;
        border-radius: 18px;
    }

    .gold-emi-modal__title {
        font-size: 32px;
    }

    .gold-emi-field__input {
        height: 54px;
        font-size: 14px;
    }

    .gold-emi-submit-btn {
        height: 56px;
        font-size: 15px;
    }

    .gold-modal-btn {
        width: 100%;
    }
}

/* ===================================
TRANSPARENT GOLD NAVBAR
=================================== */

.gold-navbar {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 999;
    padding: 24px 0;
}

/* ===================================
WRAPPER
=================================== */

.gold-navbar__wrapper {
    position: relative;

    display: flex;
    align-items: center;
    justify-content: space-between;
}

/* ===================================
LEFT LOGO
=================================== */

.gold-navbar__left {
    width: 220px;
}

.gold-navbar__logo {
    display: inline-block;
}

.gold-navbar__logo img {
    max-width: 350px;
    display: block;
}

/* ===================================
CENTER MENU
=================================== */

.gold-navbar__center {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
}

.gold-navbar__menu {
    display: flex;
    align-items: center;
    gap: 44px;

    margin: 0;
    padding: 0;
    list-style: none;
}

/* ===================================
MENU LINKS
=================================== */

.gold-navbar__link {
    position: relative;

    color: #ffffff;
    text-decoration: none;

    font-size: 16px;
    font-weight: 600;
    letter-spacing: 0.3px;

    font-family: 'Inter', sans-serif;

    transition: all 0.3s ease;
}

.gold-navbar__link::after {
    content: "";

    position: absolute;
    left: 0;
    bottom: -8px;

    width: 0;
    height: 1px;

    background: #f4c542;

    transition: all 0.3s ease;
}

.gold-navbar__link:hover {
    color: #f4c542;
}

.gold-navbar__link:hover::after {
    width: 100%;
}

/* ===================================
RIGHT SIDE
=================================== */

.gold-navbar__right {
    width: 220px;
    display: flex;
    justify-content: flex-end;
}

/* ===================================
CALL BUTTON
=================================== */

.gold-navbar__call {
    height: 48px;
    padding: 0 22px;

    border-radius: 60px;

    display: inline-flex;
    align-items: center;
    gap: 10px;

    text-decoration: none;

    color: #ffffff;

    font-size: 15px;
    font-weight: 600;

    font-family: 'Inter', sans-serif;

    background: rgba(255,255,255,0.06);

    border: 1px solid rgba(255,255,255,0.1);

    backdrop-filter: blur(12px);

    transition: all 0.3s ease;
}

.gold-navbar__call:hover {
    color: #1d1d1d;

    background: linear-gradient(
        180deg,
        #fff8cc 0%,
        #ffe27a 10%,
        #ffc933 22%,
        #f0b400 38%,
        #cf8d00 58%,
        #9c6400 75%,
        #f9db75 100%
    );

    border-color: transparent;
}

/* ===================================
CALL ICON
=================================== */

.gold-navbar__call-icon {
    width: 28px;
    height: 28px;

    border-radius: 50%;

    display: flex;
    align-items: center;
    justify-content: center;

    background: rgba(255,255,255,0.08);

    font-size: 11px;
}

/* ===================================
MOBILE TOGGLE
=================================== */

.gold-navbar__toggle {
    display: none;

    width: 46px;
    height: 46px;

    border: none;
    border-radius: 10px;

    background: rgba(255,255,255,0.08);

    padding: 0;

    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 5px;
}

.gold-navbar__toggle span {
    width: 20px;
    height: 2px;

    background: #ffffff;

    display: block;
}

/* ===================================
MOBILE MENU
=================================== */

.gold-mobile-menu {
    position: fixed;
    top: 0;
    right: -100%;

    width: 300px;
    height: 100vh;

    background: #121315;

    z-index: 9999;

    padding: 100px 30px 30px;

    transition: all 0.4s ease;
}

.gold-mobile-menu.active {
    right: 0;
}

.gold-mobile-menu__list {
    margin: 0;
    padding: 0;
    list-style: none;
}

.gold-mobile-menu__list li {
    margin-bottom: 22px;
}

.gold-mobile-menu__list a {
    color: #ffffff;
    text-decoration: none;

    font-size: 18px;
    font-weight: 600;

    font-family: 'Inter', sans-serif;
}

/* ===================================
RESPONSIVE
=================================== */

@media (max-width: 991px) {

    .gold-navbar {
        padding: 18px 0;
    }

    .gold-navbar__center,
    .gold-navbar__right {
        display: none;
    }

    .gold-navbar__toggle {
        display: flex;
    }

    .gold-navbar__left {
        width: auto;
    }

    .gold-navbar__logo img {
        max-width: 180px;
    }
}

/* ===================================
FOOTER
=================================== */

.gold-footer {
    position: relative;

    background:
        radial-gradient(circle at top right,
        rgba(255, 198, 76, 0.06),
        transparent 24%),

        radial-gradient(circle at bottom left,
        rgba(255, 198, 76, 0.05),
        transparent 24%),

        #111214;

    padding-top: 70px;

    overflow: hidden;
}

/* ===================================
TEXTURE
=================================== */

.gold-footer::before {
    content: "";

    position: absolute;
    inset: 0;

    background-image:
        radial-gradient(rgba(255,255,255,0.03) 1px, transparent 1px);

    background-size: 3px 3px;

    opacity: 0.4;

    pointer-events: none;
}

/* ===================================
LOGO
=================================== */

.gold-footer__logo {
    display: inline-block;
    margin-bottom: 24px;
}

.gold-footer__logo img {
    max-width: 240px;
    display: block;
}

/* ===================================
TEXT
=================================== */

.gold-footer__text {
    color: rgba(255,255,255,0.72);

    font-size: 15px;
    line-height: 1.8;

    margin: 0;

    font-family: 'Inter', sans-serif;
}

/* ===================================
TITLE
=================================== */

.gold-footer__title {
    margin: 0 0 12px;

    color: #f3e4bf;

    font-size: 28px;
    font-weight: 700;

    font-family: 'Cormorant Garamond', serif;
}

/* ===================================
LINE
=================================== */

.gold-footer__line {
    width: 80px;
    height: 2px;

    margin-bottom: 26px;

    background: linear-gradient(
        90deg,
        #f4c542 0%,
        transparent 100%
    );
}

/* ===================================
ITEMS
=================================== */

.gold-footer__item,
.gold-footer__contact-item {
    display: flex;
    align-items: flex-start;
    gap: 14px;

    margin-bottom: 18px;

    color: rgba(255,255,255,0.82);

    text-decoration: none;

    font-size: 15px;
    line-height: 1.7;

    font-family: 'Inter', sans-serif;

    transition: all 0.3s ease;
}

.gold-footer__contact-item:hover {
    color: #f4c542;
}

/* ===================================
ICON
=================================== */

.gold-footer__icon {
    width: 40px;
    height: 40px;

    min-width: 40px;

    border-radius: 50%;

    display: flex;
    align-items: center;
    justify-content: center;

    background: rgba(255,255,255,0.05);

    border: 1px solid rgba(255,255,255,0.08);

    color: #f4c542;

    font-size: 14px;
}

/* ===================================
BOTTOM
=================================== */

.gold-footer__bottom {
    margin-top: 50px;

    border-top: 1px solid rgba(255,255,255,0.08);

    padding: 20px 0;
}

/* ===================================
BOTTOM WRAPPER
=================================== */

.gold-footer__bottom-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

/* ===================================
COPYRIGHT
=================================== */

.gold-footer__copyright {
    margin: 0;

    color: rgba(255,255,255,0.55);

    font-size: 14px;

    font-family: 'Inter', sans-serif;
}

/* ===================================
SOCIALS
=================================== */

.gold-footer__socials {
    display: flex;
    align-items: center;
    gap: 12px;
}

.gold-footer__socials a {
    width: 40px;
    height: 40px;

    border-radius: 50%;

    display: flex;
    align-items: center;
    justify-content: center;

    text-decoration: none;

    color: #ffffff;

    background: rgba(255,255,255,0.05);

    border: 1px solid rgba(255,255,255,0.08);

    transition: all 0.3s ease;
}

.gold-footer__socials a:hover {
    color: #1d1d1d;

    background: linear-gradient(
        180deg,
        #fff8cc 0%,
        #ffe27a 10%,
        #ffc933 22%,
        #f0b400 38%,
        #cf8d00 58%,
        #9c6400 75%,
        #f9db75 100%
    );
}

/* ===================================
RESPONSIVE
=================================== */

@media (max-width: 991px) {

    .gold-footer {
        padding-top: 55px;
    }

    .gold-footer__about,
    .gold-footer__info {
        margin-bottom: 40px;
    }
}

@media (max-width: 767px) {

    .gold-footer {
        padding-top: 45px;
    }

    .gold-footer__logo img {
        max-width: 190px;
    }

    .gold-footer__title {
        font-size: 24px;
    }

    .gold-footer__text,
    .gold-footer__item,
    .gold-footer__contact-item {
        font-size: 14px;
    }

    .gold-footer__bottom-wrapper {
        flex-direction: column;
        gap: 18px;
        text-align: center;
    }
}
/*  */
/* =========================================
ABOUT SECTION
========================================= */

.sj-about-section{
    padding:100px 0;
    background:
    linear-gradient(rgba(10,10,10,0.96), rgba(10,10,10,0.96)),
    url('https://www.transparenttextures.com/patterns/diamond-upholstery.png');
    overflow:hidden;
}

/* =========================================
LEFT IMAGE
========================================= */

.sj-about-image{
    position:relative;
}

.sj-about-image::before{
    content:'';
    position:absolute;
    width:100%;
    height:100%;
    border:2px solid #c9a227;
    top:18px;
    left:18px;
    border-radius:18px;
    z-index:0;
}

.sj-about-image img{
    width:100%;
    border-radius:18px;
    position:relative;
    z-index:2;
    display:block;
    object-fit:cover;
    box-shadow:0 20px 45px rgba(0,0,0,0.45);
}

/* =========================================
RIGHT CONTENT
========================================= */

.sj-about-subtitle{
    display:inline-block;
    color:#d4af37;
    font-size:14px;
    letter-spacing:3px;
    font-weight:600;
    text-transform:uppercase;
    margin-bottom:18px;
}

.sj-about-title{
    font-size:52px;
    line-height:1.2;
    color:#ffffff;
    margin-bottom:28px;
    font-weight:700;
}

.sj-about-title span{
    color:#d4af37;
}

.sj-about-content p{
    font-size:17px;
    line-height:1.95;
    color:#cfcfcf;
    margin-bottom:22px;
}

/* =========================================
HIGHLIGHT BOX
========================================= */

.sj-about-highlight{
    background:linear-gradient(135deg,#7a1212,#b11f1f);
    padding:30px;
    border-radius:18px;
    margin-top:30px;
    position:relative;
    overflow:hidden;
    border:1px solid rgba(212,175,55,0.25);
}

.sj-about-highlight::before{
    content:'';
    position:absolute;
    width:180px;
    height:180px;
    background:rgba(255,255,255,0.05);
    border-radius:50%;
    right:-60px;
    top:-60px;
}

.sj-about-highlight h4{
    color:#f6d77a;
    font-size:24px;
    margin-bottom:12px;
    position:relative;
    z-index:2;
}

.sj-about-highlight p{
    color:#f2f2f2;
    margin:0;
    font-size:15px;
    line-height:1.8;
    position:relative;
    z-index:2;
}

/* =========================================
RESPONSIVE
========================================= */

@media(max-width:991px){

    .sj-about-section{
        padding:80px 0;
    }

    .sj-about-title{
        font-size:40px;
    }

}

@media(max-width:576px){

    .sj-about-section{
        padding:65px 0;
    }

    .sj-about-title{
        font-size:30px;
    }

    .sj-about-content p{
        font-size:15px;
        line-height:1.8;
    }

    .sj-about-highlight{
        padding:24px;
    }

}
/* =========================================
CONTACT BANNER
========================================= */

.sj-contact-banner{
    position:relative;
    height:460px;
    overflow:hidden;
    display:flex;
    align-items:center;
}

.sj-contact-banner img{
    position:absolute;
    width:100%;
    height:100%;
    object-fit:cover;
}

.sj-contact-overlay{
    position:absolute;
    inset:0;
    background:rgba(0,0,0,0.72);
}

.sj-contact-banner-content{
    position:relative;
    z-index:2;
    max-width:700px;
}

.sj-contact-banner-content span{
    display:inline-block;
    color:#d4af37;
    font-size:14px;
    letter-spacing:3px;
    font-weight:600;
    margin-bottom:18px;
}

.sj-contact-banner-content h1{
    color:#ffffff;
    font-size:72px;
    font-weight:700;
    margin-bottom:20px;
    line-height:1.1;
}

.sj-contact-banner-content p{
    color:#d4d4d4;
    font-size:17px;
    line-height:1.9;
    max-width:650px;
}

/* =========================================
CONTACT SECTION
========================================= */

.sj-contact-section{
    padding:100px 0;
    background:#0b0b0b;
}

/* =========================================
FORM BOX
========================================= */

.sj-contact-form-box{
    background:#141414;
    border-radius:22px;
    padding:45px;
    border:1px solid rgba(212,175,55,0.12);
}

.sj-contact-form-box h2{
    color:#ffffff;
    font-size:38px;
    margin-bottom:35px;
    font-weight:700;
}

/* =========================================
INPUTS
========================================= */

.sj-input{
    background:#1d1d1d;
    border:1px solid rgba(255,255,255,0.08);
    height:58px;
    border-radius:12px;
    color:#ffffff;
    padding:15px 20px;
    font-size:15px;
}

.sj-input:focus{
    background:#1d1d1d;
    color:#ffffff;
    border-color:#d4af37;
    box-shadow:none;
}

.sj-input::placeholder{
    color:#9d9d9d;
}

.sj-textarea{
    height:180px;
    resize:none;
    padding-top:18px;
}

/* =========================================
BUTTON
========================================= */

.sj-contact-btn{
    background:linear-gradient(135deg,#d4af37,#f3cf67);
    border:none;
    color:#111111;
    padding:15px 38px;
    border-radius:50px;
    font-weight:600;
    transition:0.4s;
}

.sj-contact-btn:hover{
    transform:translateY(-3px);
}

/* =========================================
INFO BOX
========================================= */

.sj-contact-info-box{
    background:linear-gradient(135deg,#7a1212,#a81f1f);
    border-radius:22px;
    padding:45px;
    height:100%;
    position:relative;
    overflow:hidden;
}

.sj-contact-info-box::before{
    content:'';
    position:absolute;
    width:220px;
    height:220px;
    border-radius:50%;
    background:rgba(255,255,255,0.05);
    top:-80px;
    right:-80px;
}

.sj-contact-info-box h2{
    color:#f6d77a;
    font-size:38px;
    margin-bottom:35px;
    position:relative;
    z-index:2;
    font-weight:700;
}

/* =========================================
INFO ITEMS
========================================= */

.sj-contact-info-item{
    margin-bottom:32px;
    position:relative;
    z-index:2;
}

.sj-contact-info-item:last-child{
    margin-bottom:0;
}

.sj-contact-info-item h5{
    color:#ffffff;
    font-size:18px;
    margin-bottom:12px;
    font-weight:600;
}

.sj-contact-info-item p{
    color:#ededed;
    font-size:15px;
    line-height:1.9;
    margin:0;
}

.sj-contact-info-item a{
    color:#f6d77a;
    text-decoration:none;
    transition:0.3s;
}

.sj-contact-info-item a:hover{
    color:#ffffff;
}

/* =========================================
RESPONSIVE
========================================= */

@media(max-width:991px){

    .sj-contact-banner{
        height:380px;
    }

    .sj-contact-banner-content h1{
        font-size:52px;
    }

    .sj-contact-section{
        padding:80px 0;
    }

}

@media(max-width:576px){

    .sj-contact-banner{
        height:320px;
    }

    .sj-contact-banner-content h1{
        font-size:38px;
    }

    .sj-contact-banner-content p{
        font-size:15px;
    }

    .sj-contact-form-box,
    .sj-contact-info-box{
        padding:28px;
    }

    .sj-contact-form-box h2,
    .sj-contact-info-box h2{
        font-size:30px;
    }

    .sj-contact-section{
        padding:65px 0;
    }

}

/* =========================
SARVESHWARI HERO SECTION
========================= */

.sv-hero-section {
    position: relative;
    background: #050505;
    overflow: hidden;
    padding: 90px 0 140px;
}

.sv-hero-overlay {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(to right,
            rgba(0, 0, 0, 0.95) 22%,
            rgba(0, 0, 0, 0.55) 52%,
            rgba(0, 0, 0, 0.9) 100%);
    z-index: 1;
}

.sv-hero-wrapper {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 60px;
}

.sv-hero-content {
    width: 48%;
}

.sv-hero-subtitle {
    display: inline-block;
    color: #c8a45d;
    text-transform: uppercase;
    letter-spacing: 3px;
    font-size: 14px;
    margin-bottom: 24px;
    font-weight: 500;
}

.sv-hero-title {
    font-size: 72px;
    line-height: 1.08;
    color: #ffffff;
    margin-bottom: 28px;
    font-weight: 500;
    font-family: "Cormorant Garamond", serif;
}

.sv-hero-title span {
    color: #d6a14b;
}

.sv-hero-description {
    color: rgba(255,255,255,0.78);
    font-size: 18px;
    line-height: 1.8;
    max-width: 580px;
    margin-bottom: 40px;
}

.sv-hero-btn-group {
    display: flex;
    gap: 18px;
    margin-bottom: 42px;
}

.sv-btn-primary,
.sv-btn-secondary {
    height: 58px;
    padding: 0 34px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    text-decoration: none;
    font-size: 15px;
    font-weight: 600;
    transition: 0.4s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.sv-btn-primary {
    background: linear-gradient(to bottom, #d6b36a, #b98a33);
    color: #111;
}

.sv-btn-primary:hover {
    transform: translateY(-3px);
}

.sv-btn-secondary {
    border: 1px solid rgba(214, 161, 75, 0.6);
    color: #fff;
    background: transparent;
}

.sv-btn-secondary:hover {
    background: #c89d4f;
    color: #000;
}

.sv-hero-customer-wrap {
    display: flex;
    align-items: center;
    gap: 18px;
}

.sv-hero-customers {
    display: flex;
}

.sv-hero-customers img {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    border: 3px solid #111;
    object-fit: cover;
    margin-left: -12px;
}

.sv-hero-customers img:first-child {
    margin-left: 0;
}

.sv-hero-customer-text strong {
    display: block;
    color: #d6a14b;
    font-size: 16px;
    margin-bottom: 4px;
}

.sv-hero-customer-text span {
    color: rgba(255,255,255,0.75);
    font-size: 14px;
}

/* RIGHT IMAGE */

.sv-hero-image-wrap {
    position: relative;
    width: 52%;
    text-align: right;
}

.sv-hero-main-image {
    width: 100%;
    max-width: 820px;
    animation: svFloat 4s ease-in-out infinite;
}

@keyframes svFloat {
    0% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-12px);
    }
    100% {
        transform: translateY(0px);
    }
}

/* BADGE */

.sv-hero-badge {
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    width: 140px;
    height: 140px;
    border: 1px solid rgba(214, 161, 75, 0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.sv-hero-badge::before {
    content: "";
    position: absolute;
    inset: 12px;
    border: 1px dashed rgba(214, 161, 75, 0.4);
    border-radius: 50%;
}

.sv-hero-badge-inner img {
    width: 48px;
}

/* =========================
GOLD RATE BAR
========================= */

.sv-gold-rate-section {
    margin-top: -65px;
    position: relative;
    z-index: 20;
}

.sv-gold-rate-box {
    background: rgba(7,7,7,0.98);
    border: 1px solid rgba(214, 161, 75, 0.35);
    border-radius: 20px;
    min-height: 120px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 25px 40px;
    backdrop-filter: blur(10px);
    box-shadow: 0 10px 40px rgba(0,0,0,0.4);
}

.sv-rate-left {
    display: flex;
    align-items: center;
    gap: 20px;
}

.sv-rate-icon img {
    width: 62px;
}

.sv-rate-left h4 {
    color: #d6a14b;
    font-size: 24px;
    margin-bottom: 8px;
    text-transform: uppercase;
}

.sv-rate-left p {
    color: rgba(255,255,255,0.7);
    margin: 0;
}

.sv-rate-left p span {
    width: 10px;
    height: 10px;
    background: #00c853;
    border-radius: 50%;
    display: inline-block;
}

.sv-rate-divider {
    width: 1px;
    height: 70px;
    background: rgba(214, 161, 75, 0.25);
}

.sv-rate-price h5 {
    color: #c8a45d;
    font-size: 15px;
    margin-bottom: 12px;
}

.sv-rate-price h3 {
    color: #fff;
    font-size: 44px;
    font-family: "Cormorant Garamond", serif;
}

.sv-rate-price h3 span {
    font-size: 20px;
    color: #c8a45d;
}

.sv-rate-btn {
    min-width: 220px;
    height: 58px;
    border-radius: 10px;
    border: 1px solid rgba(214, 161, 75, 0.45);
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    color: #fff;
    font-weight: 600;
    transition: 0.4s ease;
}

.sv-rate-btn:hover {
    background: #c89d4f;
    color: #000;
}

/* =========================
RESPONSIVE
========================= */

@media (max-width: 1400px) {

    .sv-hero-title {
        font-size: 62px;
    }

}

@media (max-width: 1199px) {

    .sv-hero-wrapper {
        flex-direction: column;
        text-align: center;
    }

    .sv-hero-content,
    .sv-hero-image-wrap {
        width: 100%;
    }

    .sv-hero-description {
        margin-left: auto;
        margin-right: auto;
    }

    .sv-hero-btn-group,
    .sv-hero-customer-wrap {
        justify-content: center;
    }

    .sv-hero-badge {
        right: 50%;
        transform: translate(50%, -50%);
    }

    .sv-gold-rate-box {
        flex-wrap: wrap;
        gap: 30px;
        justify-content: center;
    }

    .sv-rate-divider {
        display: none;
    }

}

@media (max-width: 767px) {

    .sv-hero-section {
        padding: 70px 0 120px;
    }

    .sv-hero-title {
        font-size: 42px;
    }

    .sv-hero-description {
        font-size: 16px;
    }

    .sv-hero-btn-group {
        flex-direction: column;
    }

    .sv-btn-primary,
    .sv-btn-secondary {
        width: 100%;
    }

    .sv-hero-main-image {
        margin-top: 40px;
    }

    .sv-gold-rate-box {
        padding: 30px 20px;
        border-radius: 18px;
    }

    .sv-rate-price h3 {
        font-size: 36px;
    }

    .sv-rate-btn {
        width: 100%;
    }

}
/* =========================
SHOP CATEGORY SECTION
========================= */

.sv-category-section {
    position: relative;
    background: #050505;
    padding: 40px 0 24px;
    overflow: hidden;
}

/* TITLE */

.sv-category-heading {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 18px;
    margin-bottom: 38px;
}

.sv-category-heading h2 {
    color: #f6f1e7;
    font-size: 34px;
    font-weight: 500;
    margin: 0;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-family: "Cormorant Garamond", serif;
}

.sv-category-line {
    width: 55px;
    height: 1px;
    background: linear-gradient(to right,
            transparent,
            #c89d4f,
            transparent);
    position: relative;
}

.sv-category-line::before {
    content: "✦";
    position: absolute;
    color: #c89d4f;
    font-size: 12px;
    top: -9px;
    left: 50%;
    transform: translateX(-50%);
}

/* GRID */

.sv-category-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 18px;
}

/* CARD */

.sv-category-card {
    position: relative;
    border-radius: 14px;
    overflow: hidden;
    border: 1px solid rgba(200, 157, 79, 0.38);
    min-height: 360px;
    display: flex;
    align-items: flex-end;
    text-decoration: none;
    transition: 0.45s ease;
    background: #111;
}

.sv-category-card:hover {
    transform: translateY(-8px);
    border-color: rgba(214, 161, 75, 0.8);
    box-shadow: 0 18px 40px rgba(0,0,0,0.45);
}

.sv-category-image {
    position: absolute;
    inset: 0;
}

.sv-category-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: 0.7s ease;
}

.sv-category-card:hover .sv-category-image img {
    transform: scale(1.08);
}

.sv-category-overlay {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(to top,
            rgba(0,0,0,0.92) 5%,
            rgba(0,0,0,0.2) 45%,
            rgba(0,0,0,0.1) 100%);
}

.sv-category-content {
    position: relative;
    z-index: 2;
    width: 100%;
    padding: 22px 18px;
    text-align: center;
}

.sv-category-content h3 {
    color: #fff;
    font-size: 25px;
    margin-bottom: 10px;
    font-weight: 500;
    text-transform: uppercase;
    font-family: "Cormorant Garamond", serif;
}

.sv-category-content span {
    color: #c89d4f;
    font-size: 13px;
    letter-spacing: 1px;
    text-transform: uppercase;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-weight: 600;
}

.sv-category-content span svg {
    width: 12px;
    height: 12px;
}

/* =========================
FEATURE BAR
========================= */

.sv-feature-section {
    background: #050505;
    padding-bottom: 60px;
}

.sv-feature-wrapper {
    border: 1px solid rgba(214, 161, 75, 0.24);
    border-radius: 14px;
    min-height: 110px;
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    overflow: hidden;
    background:
        linear-gradient(to bottom,
            rgba(18,18,18,0.95),
            rgba(7,7,7,1));
}

.sv-feature-box {
    display: flex;
    align-items: center;
    gap: 18px;
    padding: 26px 24px;
    position: relative;
}

.sv-feature-box::after {
    content: "";
    position: absolute;
    right: 0;
    top: 22px;
    width: 1px;
    height: calc(100% - 44px);
    background: rgba(214, 161, 75, 0.18);
}

.sv-feature-box-last::after {
    display: none;
}

.sv-feature-icon i {
    color: #ffc362;
    font-size: 24px;
}

.sv-feature-content h4 {
    color: #f4f0e8;
    font-size: 18px;
    margin-bottom: 8px;
    font-weight: 600;
    text-transform: uppercase;
}

.sv-feature-content p {
    color: rgba(255,255,255,0.68);
    margin: 0;
    font-size: 14px;
    line-height: 1.5;
}

/* =========================
RESPONSIVE
========================= */

@media (max-width: 1400px) {

    .sv-category-grid {
        grid-template-columns: repeat(3, 1fr);
    }

}

@media (max-width: 1199px) {

    .sv-feature-wrapper {
        grid-template-columns: repeat(2, 1fr);
    }

    .sv-feature-box::after {
        display: none;
    }

}

@media (max-width: 767px) {

    .sv-category-section {
        padding-top: 30px;
    }

    .sv-category-heading h2 {
        font-size: 24px;
    }

    .sv-category-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 14px;
    }

    .sv-category-card {
        min-height: 250px;
    }

    .sv-category-content h3 {
        font-size: 20px;
    }

    .sv-feature-wrapper {
        grid-template-columns: 1fr;
    }

    .sv-feature-box {
        padding: 22px 18px;
    }

}

@media (max-width: 575px) {

    .sv-category-grid {
        grid-template-columns: 1fr;
    }

}
/* =========================
SIGNATURE COLLECTION SECTION
========================= */

.sv-signature-section {
    position: relative;
    background: #050505;
    padding: 10px 0 60px;
    overflow: hidden;
}

/* HEADING */

.sv-signature-heading {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 18px;
    margin-bottom: 34px;
}

.sv-signature-heading h2 {
    color: #f4efe6;
    font-size: 34px;
    font-weight: 500;
    margin: 0;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-family: "Cormorant Garamond", serif;
}

.sv-signature-line {
    width: 55px;
    height: 1px;
    background: linear-gradient(to right,
            transparent,
            #c89d4f,
            transparent);
    position: relative;
}

.sv-signature-line::before {
    content: "✦";
    position: absolute;
    top: -9px;
    left: 50%;
    transform: translateX(-50%);
    color: #c89d4f;
    font-size: 12px;
}

/* GRID */

.sv-signature-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
}

/* CARD */

.sv-signature-card {
    position: relative;
    min-height: 340px;
    border-radius: 14px;
    overflow: hidden;
    border: 1px solid rgba(214, 161, 75, 0.38);
    text-decoration: none;
    transition: 0.5s ease;
    display: flex;
    align-items: flex-end;
    background: #111;
}

.sv-signature-card:hover {
    transform: translateY(-8px);
    border-color: rgba(214, 161, 75, 0.8);
    box-shadow: 0 18px 40px rgba(0,0,0,0.45);
}

.sv-signature-image {
    position: absolute;
    inset: 0;
}

.sv-signature-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 0.8s ease;
}

.sv-signature-card:hover .sv-signature-image img {
    transform: scale(1.08);
}

/* OVERLAY */

.sv-signature-overlay {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(to right,
            rgba(0,0,0,0.82) 5%,
            rgba(0,0,0,0.38) 50%,
            rgba(0,0,0,0.12) 100%);
}

/* CONTENT */

.sv-signature-content {
    position: relative;
    z-index: 2;
    padding: 34px;
    width: 100%;
}

.sv-signature-content h3 {
    color: #d6a14b;
    font-size: 42px;
    line-height: 1.1;
    margin-bottom: 18px;
    font-weight: 500;
    text-transform: uppercase;
    font-family: "Cormorant Garamond", serif;
}

.sv-signature-content h3 span {
    color: #fff;
}

.sv-signature-content p {
    color: rgba(255,255,255,0.78);
    font-size: 18px;
    line-height: 1.7;
    margin-bottom: 26px;
}

/* BUTTON */

.sv-signature-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #c89d4f;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: 0.3s ease;
}

.sv-signature-btn svg {
    width: 13px;
    height: 13px;
}

.sv-signature-card:hover .sv-signature-btn {
    transform: translateX(4px);
}

/* =========================
RESPONSIVE
========================= */

@media (max-width: 1400px) {

    .sv-signature-content h3 {
        font-size: 36px;
    }

}

@media (max-width: 1199px) {

    .sv-signature-grid {
        grid-template-columns: 1fr;
    }

    .sv-signature-card {
        min-height: 380px;
    }

}

@media (max-width: 767px) {

    .sv-signature-section {
        padding-bottom: 40px;
    }

    .sv-signature-heading {
        gap: 12px;
        margin-bottom: 26px;
    }

    .sv-signature-heading h2 {
        font-size: 24px;
        letter-spacing: 1px;
    }

    .sv-signature-line {
        width: 34px;
    }

    .sv-signature-card {
        min-height: 300px;
    }

    .sv-signature-content {
        padding: 24px;
    }

    .sv-signature-content h3 {
        font-size: 28px;
        margin-bottom: 14px;
    }

    .sv-signature-content p {
        font-size: 15px;
        margin-bottom: 18px;
    }

}
/* =========================
GOLD SAVINGS SECTION
========================= */

.sv-saving-section {
    position: relative;
    background: #050505;
    padding: 10px 0 34px;
    overflow: hidden;
}

/* TITLE */

.sv-saving-heading {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 18px;
    margin-bottom: 34px;
}

.sv-saving-heading h2 {
    color: #f4efe6;
    font-size: 34px;
    font-weight: 500;
    margin: 0;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-family: "Cormorant Garamond", serif;
}

.sv-saving-line {
    width: 55px;
    height: 1px;
    background: linear-gradient(to right,
            transparent,
            #c89d4f,
            transparent);
    position: relative;
}

.sv-saving-line::before {
    content: "✦";
    position: absolute;
    top: -9px;
    left: 50%;
    transform: translateX(-50%);
    color: #c89d4f;
    font-size: 12px;
}

/* WRAPPER */

.sv-saving-wrapper {
    position: relative;
    border: 1px solid rgba(214, 161, 75, 0.25);
    border-radius: 18px;
    overflow: hidden;
    min-height: 370px;
    display: grid;
    grid-template-columns: 1.1fr 1.5fr 1fr;
    background:
        linear-gradient(to bottom,
            rgba(14,14,14,0.96),
            rgba(6,6,6,1));
}

/* LEFT */

.sv-saving-info {
    padding: 42px 36px;
    border-right: 1px solid rgba(214, 161, 75, 0.12);
}

.sv-saving-info h3 {
    color: #fff;
    font-size: 42px;
    line-height: 1.2;
    margin-bottom: 16px;
    font-family: "Cormorant Garamond", serif;
    font-weight: 500;
}

.sv-saving-info p {
    color: rgba(255,255,255,0.7);
    font-size: 16px;
    margin-bottom: 34px;
}

/* FEATURES */

.sv-saving-features {
    display: flex;
    align-items: center;
    gap: 18px;
    margin-bottom: 38px;
}

.sv-saving-feature {
    text-align: center;
}

.sv-saving-feature-icon {
    width: 52px;
    height: 52px;
    margin: 0 auto 12px;
}

.sv-saving-feature-icon img {
    width: 100%;
}

.sv-saving-feature span {
    color: #f2f2f2;
    font-size: 14px;
    line-height: 1.6;
}

.sv-saving-divider {
    width: 1px;
    height: 70px;
    background: rgba(214, 161, 75, 0.16);
}

/* BUTTON */

.sv-saving-btn {
    width: 180px;
    height: 56px;
    border-radius: 10px;
    background: linear-gradient(to bottom, #d6b36a, #b98a33);
    color: #111;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    transition: 0.4s ease;
}

.sv-saving-btn:hover {
    transform: translateY(-3px);
}

/* PLAN WRAP */

.sv-saving-plan-wrap {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 24px;
    padding: 40px;
}

/* PLAN */

.sv-saving-plan {
    width: 100%;
    max-width: 250px;
    min-height: 300px;
    border: 1px solid rgba(214, 161, 75, 0.28);
    border-radius: 16px;
    padding: 34px 28px;
    text-align: center;
    background:
        linear-gradient(to bottom,
            rgba(18,18,18,0.98),
            rgba(7,7,7,1));
    transition: 0.4s ease;
}

.sv-saving-plan:hover {
    transform: translateY(-8px);
    border-color: rgba(214, 161, 75, 0.7);
}

.sv-saving-plan h3 {
    color: #d6a14b;
    font-size: 62px;
    margin-bottom: 8px;
    font-family: "Cormorant Garamond", serif;
    font-weight: 500;
}

.sv-saving-plan span {
    color: rgba(255,255,255,0.75);
    display: block;
    margin-bottom: 18px;
    font-size: 16px;
}

.sv-plan-arrow {
    color: #c89d4f;
    margin-bottom: 18px;
    font-size: 20px;
}

.sv-saving-plan p {
    color: #fff;
    margin-bottom: 10px;
    font-size: 16px;
}

.sv-saving-plan strong {
    display: block;
    color: #c89d4f;
    margin-bottom: 28px;
    font-size: 15px;
}

.sv-saving-plan a {
    color: #d6a14b;
    text-decoration: none;
    text-transform: uppercase;
    font-size: 14px;
    font-weight: 700;
}

/* RIGHT IMAGE */

.sv-saving-image {
    position: relative;
    overflow: hidden;
}

.sv-saving-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* =========================
OUR STORY SECTION
========================= */

.sv-story-section {
    background: #050505;
    padding-bottom: 70px;
}

.sv-story-wrapper {
    display: grid;
    grid-template-columns: 1.2fr 1fr 0.6fr;
    border: 1px solid rgba(214, 161, 75, 0.22);
    border-radius: 18px;
    overflow: hidden;
    background:
        linear-gradient(to bottom,
            rgba(14,14,14,0.96),
            rgba(6,6,6,1));
}

/* IMAGE */

.sv-story-image {
    position: relative;
    min-height: 520px;
}

.sv-story-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* BADGE */

.sv-story-badge {
    position: absolute;
    right: 24px;
    bottom: 24px;
    width: 150px;
    height: 150px;
    background: rgba(9,9,9,0.95);
    border: 1px solid rgba(214, 161, 75, 0.35);
    border-radius: 14px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.sv-story-badge h3 {
    color: #d6a14b;
    font-size: 52px;
    margin-bottom: 6px;
    font-family: "Cormorant Garamond", serif;
}

.sv-story-badge span {
    color: #f3f3f3;
    text-align: center;
    font-size: 18px;
    line-height: 1.5;
}

/* CONTENT */

.sv-story-content {
    padding: 50px 42px;
    border-left: 1px solid rgba(214, 161, 75, 0.12);
}

.sv-story-subtitle {
    color: #c89d4f;
    text-transform: uppercase;
    letter-spacing: 2px;
    display: inline-block;
    margin-bottom: 20px;
    font-size: 14px;
}

.sv-story-content h2 {
    color: #fff;
    font-size: 54px;
    line-height: 1.15;
    margin-bottom: 26px;
    font-family: "Cormorant Garamond", serif;
    font-weight: 500;
}

.sv-story-content p {
    color: rgba(255,255,255,0.72);
    font-size: 17px;
    line-height: 1.9;
    margin-bottom: 20px;
}

.sv-story-btn {
    margin-top: 18px;
    width: 210px;
    height: 56px;
    border-radius: 10px;
    background: linear-gradient(to bottom, #d6b36a, #b98a33);
    color: #111;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-transform: uppercase;
    font-size: 14px;
    font-weight: 700;
}

/* STATS */

.sv-story-stats {
    border-left: 1px solid rgba(214, 161, 75, 0.14);
    padding: 50px 34px;
}

.sv-story-stat {
    margin-bottom: 38px;
}

.sv-story-stat:last-child {
    margin-bottom: 0;
}

.sv-story-stat h3 {
    color: #d6a14b;
    font-size: 52px;
    margin-bottom: 8px;
    font-family: "Cormorant Garamond", serif;
}

.sv-story-stat p {
    color: rgba(255,255,255,0.75);
    font-size: 17px;
    margin: 0;
}

/* =========================
RESPONSIVE
========================= */

@media (max-width: 1400px) {

    .sv-saving-wrapper {
        grid-template-columns: 1fr;
    }

    .sv-saving-image {
        height: 420px;
    }

    .sv-story-wrapper {
        grid-template-columns: 1fr;
    }

}

@media (max-width: 991px) {

    .sv-saving-plan-wrap {
        flex-direction: column;
    }

    .sv-story-content h2 {
        font-size: 40px;
    }

}

@media (max-width: 767px) {

    .sv-saving-heading h2 {
        font-size: 24px;
    }

    .sv-saving-info {
        padding: 30px 22px;
    }

    .sv-saving-info h3 {
        font-size: 32px;
    }

    .sv-saving-features {
        flex-direction: column;
    }

    .sv-saving-divider {
        display: none;
    }

    .sv-saving-plan-wrap {
        padding: 24px;
    }

    .sv-saving-plan h3 {
        font-size: 50px;
    }

    .sv-story-image {
        min-height: 340px;
    }

    .sv-story-content {
        padding: 34px 24px;
    }

    .sv-story-content h2 {
        font-size: 32px;
    }

    .sv-story-stats {
        padding: 34px 24px;
    }

    .sv-story-stat h3 {
        font-size: 40px;
    }

}
/* =========================
INSTAGRAM SECTION
========================= */

.sv-instagram-section {
    position: relative;
    background: #050505;
    padding: 20px 0 40px;
    overflow: hidden;
}

/* HEADING */

.sv-instagram-heading,
.sv-testimonial-heading {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 18px;
    margin-bottom: 30px;
}

.sv-instagram-heading h2,
.sv-testimonial-heading h2 {
    color: #f4efe6;
    font-size: 34px;
    font-weight: 500;
    margin: 0;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-family: "Cormorant Garamond", serif;
}

.sv-instagram-line,
.sv-testimonial-line {
    width: 55px;
    height: 1px;
    background: linear-gradient(to right,
            transparent,
            #c89d4f,
            transparent);
    position: relative;
}

.sv-instagram-line::before,
.sv-testimonial-line::before {
    content: "✦";
    position: absolute;
    top: -9px;
    left: 50%;
    transform: translateX(-50%);
    color: #c89d4f;
    font-size: 12px;
}

/* GRID */

.sv-instagram-grid {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 16px;
}

/* CARD */

.sv-instagram-card,
.sv-instagram-follow {
    position: relative;
    border-radius: 14px;
    overflow: hidden;
    border: 1px solid rgba(214, 161, 75, 0.3);
    min-height: 180px;
    background: #111;
    transition: 0.45s ease;
    text-decoration: none;
}

.sv-instagram-card:hover,
.sv-instagram-follow:hover {
    transform: translateY(-6px);
    border-color: rgba(214, 161, 75, 0.75);
}

.sv-instagram-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 0.7s ease;
}

.sv-instagram-card:hover img {
    transform: scale(1.08);
}

/* FOLLOW */

.sv-instagram-follow {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background:
        linear-gradient(to bottom,
            rgba(15,15,15,0.95),
            rgba(7,7,7,1));
}

.sv-instagram-follow-icon {
    width: 62px;
    height: 62px;
    border-radius: 50%;
    border: 1px solid rgba(214, 161, 75, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 18px;
}

.sv-instagram-follow-icon i {
    color: #c89d4f;
    font-size: 24px;
}

.sv-instagram-follow h3 {
    color: #d6a14b;
    font-size: 28px;
    margin-bottom: 10px;
    text-transform: uppercase;
    font-family: "Cormorant Garamond", serif;
}

.sv-instagram-follow span {
    color: rgba(255,255,255,0.7);
    font-size: 14px;
}

/* =========================
TESTIMONIAL SECTION
========================= */

.sv-testimonial-section {
    background: #050505;
    padding-bottom: 70px;
    overflow: hidden;
}

/* SWIPER */

.sv-testimonial-slider {
    padding-bottom: 60px;
}

/* CARD */

.sv-testimonial-card {
    border: 1px solid rgba(214, 161, 75, 0.22);
    border-radius: 16px;
    padding: 38px 34px;
    min-height: 250px;
    background:
        linear-gradient(to bottom,
            rgba(18,18,18,0.95),
            rgba(7,7,7,1));
    transition: 0.4s ease;
}

.sv-testimonial-card:hover {
    transform: translateY(-6px);
    border-color: rgba(214, 161, 75, 0.7);
}

.sv-testimonial-stars {
    color: #d6a14b;
    font-size: 24px;
    margin-bottom: 24px;
    letter-spacing: 3px;
}

.sv-testimonial-card p {
    color: rgba(255,255,255,0.78);
    font-size: 17px;
    line-height: 1.9;
    margin-bottom: 34px;
}

/* USER */

.sv-testimonial-user {
    display: flex;
    align-items: center;
    gap: 16px;
}

.sv-testimonial-user-image {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    overflow: hidden;
    border: 2px solid rgba(214, 161, 75, 0.4);
}

.sv-testimonial-user-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.sv-testimonial-user-info h4 {
    color: #fff;
    font-size: 18px;
    margin-bottom: 6px;
}

.sv-testimonial-user-info span {
    color: rgba(255,255,255,0.65);
    font-size: 15px;
}

/* PAGINATION */

.sv-testimonial-pagination {
    bottom: 0 !important;
}

.sv-testimonial-pagination .swiper-pagination-bullet {
    width: 10px;
    height: 10px;
    background: rgba(214, 161, 75, 0.35);
    opacity: 1;
}

.sv-testimonial-pagination .swiper-pagination-bullet-active {
    background: #d6a14b;
    width: 28px;
    border-radius: 30px;
}

/* =========================
RESPONSIVE
========================= */

@media (max-width: 1400px) {

    .sv-instagram-grid {
        grid-template-columns: repeat(4, 1fr);
    }

}

@media (max-width: 991px) {

    .sv-instagram-grid {
        grid-template-columns: repeat(3, 1fr);
    }

}

@media (max-width: 767px) {

    .sv-instagram-heading h2,
    .sv-testimonial-heading h2 {
        font-size: 24px;
    }

    .sv-instagram-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 14px;
    }

    .sv-instagram-card,
    .sv-instagram-follow {
        min-height: 150px;
    }

    .sv-instagram-follow h3 {
        font-size: 22px;
    }

    .sv-testimonial-card {
        padding: 28px 22px;
    }

    .sv-testimonial-card p {
        font-size: 15px;
    }

}
/* =========================
VISIT STORE SECTION
========================= */

.sv-store-section {
    position: relative;
    background: #050505;
    padding: 10px 0 80px;
    overflow: hidden;
}

/* WRAPPER */

.sv-store-wrapper {
    display: grid;
    grid-template-columns: 0.95fr 1.45fr;
    border-radius: 18px;
    overflow: hidden;
    border: 1px solid rgba(214, 161, 75, 0.22);
    background:
        linear-gradient(to bottom,
            rgba(14,14,14,0.97),
            rgba(7,7,7,1));
    min-height: 420px;
}

/* =========================
LEFT SIDE
========================= */

.sv-store-info {
    padding: 54px 48px;
    position: relative;
    border-right: 1px solid rgba(214, 161, 75, 0.12);
}

/* TITLE */

.sv-store-info h2 {
    color: #f4efe6;
    font-size: 42px;
    line-height: 1.1;
    margin-bottom: 38px;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-family: "Cormorant Garamond", serif;
    font-weight: 500;
}

/* ITEM */

.sv-store-item {
    display: flex;
    align-items: flex-start;
    gap: 18px;
    margin-bottom: 26px;
}

/* ICON */

.sv-store-icon {
    width: 48px;
    min-width: 48px;
    height: 48px;
    border-radius: 50%;
    border: 1px solid rgba(214, 161, 75, 0.22);
    display: flex;
    align-items: center;
    justify-content: center;
    background:
        linear-gradient(to bottom,
            rgba(18,18,18,0.95),
            rgba(7,7,7,1));
}

.sv-store-icon i {
    color: #c89d4f;
    font-size: 18px;
}

/* TEXT */

.sv-store-text p,
.sv-store-text a {
    color: rgba(255,255,255,0.76);
    font-size: 17px;
    line-height: 1.9;
    text-decoration: none;
    display: block;
    transition: 0.3s ease;
}

.sv-store-text a:hover {
    color: #d6a14b;
}

/* BUTTONS */

.sv-store-btn-wrap {
    display: flex;
    gap: 16px;
    margin-top: 40px;
}

.sv-store-call-btn,
.sv-store-whatsapp-btn {
    height: 58px;
    padding: 0 28px;
    border-radius: 10px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    transition: 0.4s ease;
}

.sv-store-call-btn {
    background:
        linear-gradient(to bottom,
            #d6b36a,
            #b98a33);
    color: #111;
}

.sv-store-whatsapp-btn {
    border: 1px solid rgba(214, 161, 75, 0.28);
    color: #fff;
    background: transparent;
}

.sv-store-call-btn:hover,
.sv-store-whatsapp-btn:hover {
    transform: translateY(-4px);
}

/* =========================
MAP
========================= */

.sv-store-map {
    position: relative;
    min-height: 420px;
    overflow: hidden;
}

.sv-store-map iframe {
    width: 100%;
    height: 100%;
    border: 0;
    filter:
        grayscale(1)
        invert(0.92)
        contrast(1.2)
        brightness(0.72);
}

/* MAP OVERLAY */

.sv-store-map::after {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(to left,
            rgba(0,0,0,0.08),
            rgba(0,0,0,0.22));
    pointer-events: none;
}

/* =========================
RESPONSIVE
========================= */

@media (max-width: 1199px) {

    .sv-store-wrapper {
        grid-template-columns: 1fr;
    }

    .sv-store-map {
        height: 420px;
    }

}

@media (max-width: 767px) {

    .sv-store-section {
        padding-bottom: 50px;
    }

    .sv-store-info {
        padding: 34px 24px;
    }

    .sv-store-info h2 {
        font-size: 30px;
        margin-bottom: 28px;
    }

    .sv-store-item {
        gap: 14px;
        margin-bottom: 22px;
    }

    .sv-store-icon {
        width: 42px;
        min-width: 42px;
        height: 42px;
    }

    .sv-store-text p,
    .sv-store-text a {
        font-size: 15px;
        line-height: 1.8;
    }

    .sv-store-btn-wrap {
        flex-direction: column;
    }

    .sv-store-call-btn,
    .sv-store-whatsapp-btn {
        width: 100%;
    }

    .sv-store-map {
        height: 340px;
    }

}