@charset "UTF-8";
@font-face {
    font-family: 'Brandon-Text';
    src: url("../fonts/brandon_text_regular.ttf") format("truetype"), url("../fonts/brandon_text_regular.woff") format("woff"), url("../fonts/brandon_text_regular.svg") format("svg");
    font-weight: 400;
    font-style: normal;
}

@font-face {
    font-family: 'Brandon-Text';
    src: url("../fonts/brandon_textmedium.ttf") format("truetype"), url("../fonts/brandon_textmedium.woff") format("woff"), url("../fonts/brandon_textmedium.svg") format("svg");
    font-weight: 600;
    font-style: normal;
}

@font-face {
    font-family: 'Brandon-Text';
    src: url("../fonts/brandon_textbold.ttf") format("truetype"), url("../fonts/brandon_textbold.woff") format("woff"), url("../fonts/brandon_textbold.svg") format("svg");
    font-weight: 700;
    font-style: normal;
}
.clear{ clear:both; }
:root {
    --ep-purple: #582487;
    --ep-purple-dark: #37125d;
    --ep-orange: #ff8c16;
    --ep-orange-soft: #fff1df;
    --ep-cream: #fff7f2;
    --ep-dark: #1e2430;
    --ep-muted: #687385;
    --ep-border: #eee4df;
    --ep-green: #25D366;
}

* {
    box-sizing: border-box
}

body {
    font-family: "Brandon-Text", sans-serif;
    color: var(--ep-dark);
    background: #fff;
    overflow-x: hidden
}

a {
    text-decoration: none
}

.top-line {
    height: 3px;
    background: linear-gradient(90deg, var(--ep-purple), var(--ep-orange))
}


.btn-rent {
    background: var(--ep-orange);
    color: var(--ep-purple);
    font-weight: 900;
    border-radius: 18px;
    padding: 13px 18px;
    box-shadow: 0 10px 20px rgba(255, 140, 22, .28)
}

.btn-rent:hover {
    background: #ff9d2f;
    color: var(--ep-purple);
    transform: translateY(-1px)
}

.page-hero {
    position: relative;
    padding: 70px 0 55px;
    background: radial-gradient(circle at 12% 15%, rgba(255, 140, 22, .14), transparent 32%), linear-gradient(180deg, #fff, #fff8f3)
}

.breadcrumb-mini {
    display: inline-flex;
    gap: 10px;
    align-items: center;
    background: #fff;
    border: 1px solid var(--ep-border);
    border-radius: 999px;
    padding: 9px 14px;
    font-size: 13px;
    color: var(--ep-muted);
    box-shadow: 0 8px 24px rgba(34, 25, 18, .05)
}

.section-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--ep-orange-soft);
    color: var(--ep-orange);
    font-weight: 900;
    border-radius: 999px;
    padding: 8px 13px;
    font-size: 13px;
    margin-bottom: 14px
}

.product-title {
    font-size: clamp(38px, 5vw, 64px);
    font-weight: 950;
    letter-spacing: -2.4px;
    line-height: .98;
    color: var(--ep-purple);
    margin-bottom: 18px
}

.price-card {
    display: inline-flex;
    align-items: end;
    gap: 8px;
    background: #fff;
    border: 1px solid var(--ep-border);
    border-radius: 22px;
    padding: 15px 20px;
    margin-bottom: 22px;
    box-shadow: 0 18px 45px rgba(88, 36, 135, .08)
}

.price-card .price {
    font-size: 34px;
    font-weight: 950;
    color: var(--ep-orange);
    line-height: 1
}


.price-card .price2 {
    font-size: 34px;
    font-weight: 950;
    color: var(--ep-orange);
    line-height: 1
}


.price-card .tax {
    font-size: 18px;
    font-weight: 900;
    color: var(--ep-orange)
}

.hero-desc {
    font-size: 17px;
    line-height: 1.8;
    color: #343b48;
    max-width: 650px;
    margin-bottom: 24px
}

.feature-grid {
    display: grid;
    grid-template-columns:repeat(2, minmax(0, 1fr));
    gap: 12px;
    margin: 24px 0 26px;
    max-width: 560px
}

.feature-item {
    background: #fff;
    border: 1px solid var(--ep-border);
    border-radius: 18px;
    padding: 14px 15px;
    display: flex;
    align-items: center;
    gap: 11px;
    box-shadow: 0 12px 30px rgba(32, 24, 16, .04)
}

.feature-icon {
    width: 35px;
    height: 35px;
    border-radius: 12px;
    background: #f6ecff;
    color: var(--ep-purple);
    display: grid;
    place-items: center;
    flex: 0 0 auto
}

.feature-item strong {
    display: block;
    font-size: 14px;
    color: #151b26
}

.feature-item span {
    font-size: 14px;
    color: var(--ep-muted)
}

.cta-row {
    display: flex;
    flex-wrap: nowrap;
    gap: 14px;
    align-items: center;
    margin-bottom: 18px
}

.cta-row .btn-main {
    flex: 1;
    justify-content: center;
    white-space: nowrap
}

@media (max-width: 768px) {
    .cta-row {
        flex-direction: column
    }

    .cta-row .btn-main {
        width: 100%
    }
}

.btn-main {
    position: relative;
    border: 0;
    border-radius: 999px;
    padding: 15px 25px;
    font-weight: 950;
    display: inline-flex;
    align-items: center;
    gap: 11px;
    transition: .25s ease;
    overflow: hidden;
    isolation: isolate
}

.btn-main:before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(120deg, rgba(255, 255, 255, .28), transparent 42%);
    opacity: .9;
    z-index: -1
}

.btn-main i {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    background: rgba(255, 255, 255, .22);
    font-size: 14px
}

.btn-main:hover {
    transform: translateY(-3px);
    box-shadow: 0 22px 38px rgba(26, 18, 12, .18)
}

.btn-orange {
    background: linear-gradient(135deg, #ff7a00, #ffb347);
    color: #fff;
    box-shadow: 0 18px 34px rgba(255, 122, 0, .34)
}

.btn-orange i {
    background: rgba(255, 255, 255, .18);
    color: #fff
}

.btn-orange:hover {
    background: linear-gradient(135deg, #ff8d1f, #ffc15c)
}

.btn-purple {
    background: linear-gradient(135deg, var(--ep-purple), #7b33bd);
    color: #fff;
    box-shadow: 0 16px 28px rgba(88, 36, 135, .24)
}

.btn-whatsapp {
    background: linear-gradient(135deg, #18c964, #57f59d);
    color: #fff;
    box-shadow: 0 18px 34px rgba(37, 211, 102, .28)
}

.btn-whatsapp i {
    background: rgba(255, 255, 255, .18);
    color: #fff
}

.btn-whatsapp:hover {
    background: linear-gradient(135deg, #1edb6e, #72ffb1)
}

.back-link {
    color: var(--ep-orange);
    font-weight: 900;
    text-decoration: underline;
    text-underline-offset: 4px
}

.gallery-card {
    position: relative;
    background: #fff;
    border: 1px solid var(--ep-border);
    border-radius: 34px;
    padding: 16px;
    box-shadow: 0 28px 70px rgba(42, 31, 22, .10)
}

.gallery-main {
    border-radius: 25px;
    overflow: hidden;
    height: 455px;
    background: #f5f1ee
}

.gallery-main img {
    width: 100%;
    height: 100%;
    object-fit: cover
}

.thumbs {
    margin-top: 14px
}

.thumbs .swiper-slide {
    height: 86px;
    border-radius: 18px;
    overflow: hidden;
    border: 3px solid transparent;
    opacity: .62;
    cursor: pointer
}

.thumbs .swiper-slide-thumb-active {
    border-color: var(--ep-orange);
    opacity: 1
}

.thumbs img {
    width: 100%;
    height: 100%;
    object-fit: cover
}

.swiper-button-next {
    width: 54px;
    height: 54px;
    border-radius: 18px;
    background: rgba(255, 255, 255, .92);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(88, 36, 135, .08);
    box-shadow: 0 18px 40px rgba(88, 36, 135, .12);
    transition: .25s ease
}

.swiper-button-next:hover {
    transform: translateY(-2px) scale(1.03);
    background: var(--ep-purple)
}

.swiper-button-next:hover:after {
    color: #fff
}

.swiper-button-next:after {
    font-size: 16px;
    font-weight: 900;
    color: var(--ep-purple)
}

.floating-badge {
    position: absolute;
    left: 34px;
    top: 34px;
    background: rgba(255, 255, 255, .94);
    border: 1px solid var(--ep-border);
    border-radius: 999px;
    padding: 10px 14px;
    font-weight: 950;
    color: var(--ep-purple);
    z-index: 3;
    box-shadow: 0 12px 30px rgba(0, 0, 0, .08)
}

.info-strip {
    margin-top: -18px;
    position: relative;
    z-index: 4
}

.strip-card {
    background: var(--ep-purple);
    color: #fff;
    border-radius: 30px;
    padding: 24px;
    box-shadow: 0 24px 60px rgba(88, 36, 135, .22)
}

.strip-item {
    display: flex;
    gap: 13px;
    align-items: center
}

.strip-icon {
    width: 48px;
    height: 48px;
    border-radius: 17px;
    background: rgba(255, 255, 255, .12);
    display: grid;
    place-items: center;
    color: var(--ep-orange);
    font-size: 20px
}

.strip-item strong {
    display: block
}

.strip-item span {
    font-size: 13px;
    color: rgba(255, 255, 255, .75)
}

section {
    padding: 75px 0
}

.section-title {
    font-size: clamp(30px, 4vw, 46px);
    font-weight: 950;
    letter-spacing: -1.4px;
    color: var(--ep-purple);
    margin-bottom: 14px
}

.section-text {
    font-size: 16px;
    color: var(--ep-muted);
    line-height: 1.8
}

.modern-card {
    height: 100%;
    background: #fff;
    border: 1px solid var(--ep-border);
    border-radius: 28px;
    padding: 26px;
    box-shadow: 0 18px 55px rgba(36, 24, 18, .06);
    transition: .25s ease
}

.modern-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 24px 70px rgba(88, 36, 135, .12)
}

.card-icon {
    width: 56px;
    height: 56px;
    border-radius: 20px;
    background: linear-gradient(135deg, var(--ep-orange), #ffb15a);
    display: grid;
    place-items: center;
    color: var(--ep-purple);
    font-size: 23px;
    margin-bottom: 17px
}

.modern-card h3 {
    font-size: 20px;
    font-weight: 950;
    color: #202633
}

.modern-card p {
    color: var(--ep-muted);
    line-height: 1.7;
    margin: 0
}

.size-box {
    background: linear-gradient(135deg, #fff7ef, #fff);
    border: 1px solid var(--ep-border);
    border-radius: 34px;
    padding: 40px
}

.metric {
    position: relative;
    background: linear-gradient(180deg, #ffffff, #fff7f0);
    border: 1px solid rgba(88, 36, 135, .08);
    border-radius: 28px;
    padding: 26px 16px;
    text-align: center;
    overflow: hidden;
    transition: .25s ease;
    box-shadow: 0 14px 35px rgba(88, 36, 135, .05)
}

.metric:before {
    content: '';
    position: absolute;
    top: -35px;
    right: -35px;
    width: 90px;
    height: 90px;
    background: rgba(255, 140, 22, .08);
    border-radius: 50%
}

.metric:hover {
    transform: translateY(-4px);
    box-shadow: 0 24px 45px rgba(88, 36, 135, .12)
}

.metric b {
    display: block;
    font-size: 44px;
    font-weight: 950;
    line-height: 1;
    color: var(--ep-purple);
    margin-bottom: 10px;
    letter-spacing: -1px
}

.metric span {
    display: block;
    font-size: 15px;
    font-weight: 800;
    color: #2f3441;
    margin-bottom: 4px
}

.metric small {
    display: block;
    font-size: 13px;
    color: var(--ep-muted);
    font-weight: 700
}

.storage-fit-section {
    padding-top: 10px
}

.storage-fit-wrapper {
    background: linear-gradient(180deg, #fff, #fff8f3);
    border: 1px solid var(--ep-border);
    border-radius: 42px;
    padding: 48px;
    position: relative;
    overflow: hidden
}

.modern-accordion {
    display: flex;
    flex-direction: column;
    gap: 16px
}

.accordion-item-modern {
    background: #fff;
    border: 1px solid rgba(88, 36, 135, .08);
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 14px 40px rgba(30, 20, 10, .05);
    transition: .25s ease
}

.accordion-item-modern.active {
    border-color: rgba(255, 140, 22, .25);
    box-shadow: 0 24px 55px rgba(255, 140, 22, .10)
}

.accordion-modern-btn {
    width: 100%;
    background: transparent;
    border: 0;
    padding: 22px 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 19px;
    font-weight: 900;
    color: var(--ep-purple)
}

.accordion-modern-btn span {
    display: flex;
    align-items: center;
    gap: 14px
}

.accordion-modern-btn .toggle-icon {
    width: 34px;
    height: 34px;
    border-radius: 13px;
    background: #f7edff;
    color: var(--ep-purple);
    display: grid;
    place-items: center;
    transition: .25s ease
}

.accordion-item-modern.active .toggle-icon {
    background: var(--ep-orange);
    color: #fff;
    transform: rotate(180deg)
}

.accordion-modern-content {
    padding: 0 24px 24px 24px;
    color: var(--ep-muted);
    line-height: 1.8;
    font-size: 15px;
    display: none
}

.storage-visual-card {
    position: relative;
    background: radial-gradient(circle at top left, rgba(255, 140, 22, .25), transparent 30%), linear-gradient(135deg, var(--ep-purple), #7b33bd);
    border-radius: 40px;
    padding: 30px;
    min-height: 520px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    box-shadow: 0 30px 80px rgba(88, 36, 135, .25)
}

.storage-visual-card img {
    width: 100%;
    max-width: 470px;
    object-fit: contain;
    filter: drop-shadow(0 35px 55px rgba(0, 0, 0, .24));
    transform: rotate(-3deg)
}

.floating-mini-card {
    position: absolute;
    background: rgba(255, 255, 255, .96);
    backdrop-filter: blur(12px);
    border-radius: 22px;
    padding: 18px 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, .12)
}

.floating-mini-card strong {
    display: block;
    font-size: 28px;
    font-weight: 950;
    color: var(--ep-purple);
    line-height: 1
}

.floating-mini-card span {
    font-size: 14px;
    font-weight: 800;
    color: var(--ep-muted)
}

.floating-mini-card.one {
    top: 28px;
    left: 28px
}

.floating-mini-card.two {
    bottom: 28px;
    right: 28px;
    display: flex;
    align-items: center;
    gap: 12px
}

.floating-mini-card.two i {
    width: 44px;
    height: 44px;
    border-radius: 15px;
    background: rgba(255, 140, 22, .15);
    display: grid;
    place-items: center;
    color: var(--ep-orange)
}

.cta-band {
    background: radial-gradient(circle at 18% 20%, rgba(255, 140, 22, .35), transparent 28%), linear-gradient(135deg, var(--ep-purple), var(--ep-purple-dark));
    border-radius: 38px;
    padding: 44px;
    color: #fff;
    overflow: hidden;
    position: relative
}

.cta-band h2 {
    font-weight: 950;
    letter-spacing: -1px
}

.cta-band p {
    color: rgba(255, 255, 255, .78)
}

.footer {
    position: relative;
    background: radial-gradient(circle at right 8%, rgba(255, 140, 22, .25), transparent 18%), radial-gradient(circle at left bottom, rgba(124, 56, 170, .35), transparent 28%), linear-gradient(135deg, #22102f 0%, #562082 100%);
    color: #fff;
    padding: 48px 0 18px;
    overflow: hidden
}

.footer .container {
    position: relative;
    z-index: 2;
    max-width: 1320px
}

.footer-cta {
    max-width: 1040px;
    margin: 0 auto 38px;
    background: rgba(255, 255, 255, .13);
    border: 1px solid rgba(255, 255, 255, .18);
    border-radius: 22px;
    padding: 26px 30px;
    box-shadow: 0 24px 60px rgba(0, 0, 0, .16);
    backdrop-filter: blur(14px)
}

.footer-cta small {
    display: block;
    color: #ffb02e;
    font-weight: 950;
    margin-bottom: 10px
}

.footer-cta h3 {
    font-size: 25px;
    line-height: 1.28;
    font-weight: 950;
    margin: 0;
    max-width: 650px
}

.footer-call-btn, .footer-rent-btn {
    border-radius: 999px;
    padding: 14px 24px;
    font-weight: 950;
    display: inline-flex;
    align-items: center;
    gap: 10px
}

.footer-call-btn {
    background: #fff;
    color: var(--ep-purple)
}

.footer-rent-btn {
    background: var(--ep-orange);
    color: var(--ep-purple)
}

.footer-main {
    max-width: 1040px;
    margin: 0 auto
}

.footer-logo-box {
    background: #fff;
    border-radius: 18px;
    padding: 13px 22px;
    display: inline-flex;
    margin-bottom: 10px;
    min-width: 250px;
    min-height: 78px;
    align-items: center;
    justify-content: center
}

.footer-logo-text {
    font-size: 38px;
    line-height: 1;
    font-weight: 500;
    letter-spacing: -2px;
    color: #5b2a86
}

.footer-logo-text .e, .footer-logo-text .sub {
    color: #ff8c16
}

.footer-logo-text .sub {
    display: block;
    font-size: 19px;
    text-align: right;
    letter-spacing: -.5px;
    margin-top: -2px
}

.footer-address {
    color: rgba(255, 255, 255, .88);
    line-height: 1.58;
    font-size: 14px;
    margin-bottom: 13px
}

.footer-address strong {
    color: #fff
}

.footer-phone {
    color: #ffb02e;
    font-weight: 950
}

.footer-title {
    font-size: 15px;
    font-weight: 950;
    color: #ffb02e;
    margin-bottom: 16px;
    text-transform: uppercase;
    line-height: 1.18
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0
}

.footer-links li {
    margin-bottom: 10px
}

.footer a {
    color: rgba(255, 255, 255, .86);
    font-size: 14px
}

.footer a:hover {
    color: #fff
}

.footer-social {
    display: flex;
    gap: 10px;
    margin-top: 18px
}

.footer-social a {
    width: 43px;
    height: 43px;
    border-radius: 14px;
    background: rgba(255, 255, 255, .12);
    display: grid;
    place-items: center;
    color: #fff
}

.footer-social a:hover {
    background: var(--ep-orange);
    color: var(--ep-purple)
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, .14);
    max-width: 1040px;
    margin: 32px auto 0;
    padding-top: 17px;
    color: rgba(255, 255, 255, .75);
    font-size: 13px;
    text-align: center
}

.footer-bottom a {
    color: #ffb02e;
    font-weight: 950
}

.footer-contact-floating {
    position: absolute;
    left: 30px;
    bottom: 24px;
    background: #1e8cff;
    color: #fff !important;
    border-radius: 18px;
    padding: 16px 22px;
    font-weight: 950;
    box-shadow: 0 18px 40px rgba(30, 140, 255, .35)
}

.footer-up {
    position: absolute;
    right: 28px;
    bottom: 28px;
    width: 54px;
    height: 54px;
    border-radius: 18px;
    background: rgba(255, 255, 255, .10);
    display: grid;
    place-items: center;
    color: #fff;
    font-size: 22px
}

.mobile-sticky {
    position: fixed;
    left: 50%;
    transform: translateX(-50%);
    bottom: 18px;
    width: calc(100% - 24px);
    max-width: 420px;
    background: rgba(255, 255, 255, .96);
    backdrop-filter: blur(14px);
    border: 1px solid rgba(88, 36, 135, .08);
    border-radius: 26px;
    padding: 10px;
    z-index: 60;
    box-shadow: 0 25px 70px rgba(0, 0, 0, .18);
    display: none;
    gap: 10px
}

.mobile-sticky .btn-main {
    padding: 13px 10px;
    font-size: 14px;
    border-radius: 18px
}

.mobile-sticky a {
    flex: 1;
    justify-content: center;
    padding: 13px 10px;
    border-radius: 17px;
    font-size: 13px
}

@media (max-width: 991px) {
    .page-hero {
        padding-top: 35px
    }

    .gallery-main {
        height: 340px
    }

    .feature-grid {
        grid-template-columns:1fr
    }

    .strip-item {
        margin: 10px 0
    }

    .mobile-sticky {
        display: flex
    }

    .product-title {
        letter-spacing: -1.5px
    }

    .navbar-collapse {
        background: #fff;
        border-radius: 20px;
        padding: 12px;
        margin-top: 10px;
        box-shadow: 0 20px 50px rgba(0, 0, 0, .08)
    }
}



.modern-footer {
    position: relative;
    background: linear-gradient(135deg, #24102f 0%, #431953 45%, #552184 100%);
    color: #fff;
    padding: 48px 0 0;
    overflow: hidden;
}

.footer-glow {
    position: absolute;
    border-radius: 50%;
    filter: blur(20px);
    opacity: .35;
}

.footer-glow-one {
    width: 360px;
    height: 360px;
    background: #ff9617;
    right: -120px;
    top: -130px;
}

.footer-glow-two {
    width: 280px;
    height: 280px;
    background: #7c3bd1;
    left: -120px;
    bottom: 20px;
}

.footer-top-card {
    position: relative;
    z-index: 2;
    background: rgba(255, 255, 255, .10);
    border: 1px solid rgba(255, 255, 255, .16);
    border-radius: 24px;
    padding: 24px 30px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 22px;
    backdrop-filter: blur(14px);
    box-shadow: 0 20px 44px rgba(0, 0, 0, .16);
    margin-bottom: 38px;
}

.footer-mini {
    color: #ffad26;
    font-weight: 900;
    font-size: 15px;
    display: block;
    margin-bottom: 9px;
}

.footer-top-card h2 {
    font-size: 26px;
    line-height: 1.25;
    font-weight: 950;
    margin: 0;
    max-width: 720px;
}

.footer-cta-group {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
}

.footer-call-btn, .footer-rent-btn {
    height: 50px;
    border-radius: 999px;
    padding: 0 22px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    font-weight: 950;
    text-decoration: none;
    transition: all .35s ease;
    white-space: nowrap;
}

.footer-call-btn {
    background: #fff;
    color: #552184;
}

.footer-rent-btn {
    background: #ff9617;
    color: #552184;
}

.footer-call-btn:hover, .footer-rent-btn:hover {
    transform: translateY(-4px);
    color: #552184;
}

.footer-main {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns:360px 1fr;
    gap: 54px;
    padding-bottom: 32px;
}

.footer-brand-area {
    max-width: 520px;
}

.footer-logo {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #fff;
    padding: 16px 22px;
    border-radius: 22px;
    box-shadow: 0 18px 36px rgba(0, 0, 0, .14);
    text-decoration: none;
    transition: all .35s ease;
}

.footer-logo:hover {
    transform: translateY(-4px);
}

.footer-logo-img {
    height: 62px;
    width: auto;
    display: block;
    object-fit: contain;
}

.footer-addresses p {
    color: rgba(255, 255, 255, .82);
    line-height: 1.55;
    margin-bottom: 12px;
    font-size: 14px;
    margin-top: 2%;
}

.footer-addresses strong {
    color: #fff;
}

.footer-addresses a {
    color: #ffad26;
    text-decoration: none;
    font-weight: 900;
}

.footer-socials {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 18px;
}

.footer-socials a {
    width: 42px;
    height: 42px;
    border-radius: 14px;
    background: rgba(255, 255, 255, .10);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all .35s ease;
}

.footer-socials a:hover {
    background: #ff9617;
    color: #552184;
    transform: translateY(-4px);
}

.footer-links-grid {
    display: grid;
    grid-template-columns:repeat(5, minmax(120px, 1fr));
    gap: 26px;
}

.footer-col h3 {
    color: #ffad26;
    font-size: 15px;
    font-weight: 950;
    /*text-transform: uppercase;*/
    margin-bottom: 14px;
    line-height: 1.28;
}

.footer-col a {
    display: block;
    color: rgba(255, 255, 255, .78);
    text-decoration: none;
    font-size: 13.5px;
    line-height: 1.45;
    margin-bottom: 9px;
    transition: all .25s ease;
}

.footer-col a:hover {
    color: #fff;
    transform: translateX(4px);
}

.footer-bottom {
    position: relative;
    z-index: 2;
    border-top: 1px solid rgba(255, 255, 255, .13);
    padding: 15px 0;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    color: rgba(255, 255, 255, .72);
    font-size: 13px;
}

.footer-bottom a {
    color: #ffad26;
    font-weight: 900;
}

@media (max-width: 1399px) {
    .footer-links-grid {
        grid-template-columns:repeat(3, 1fr);
        gap: 32px;
    }
}

@media (max-width: 1199px) {
    .footer-main {
        grid-template-columns:1fr;
        gap: 50px;
    }

    .footer-links-grid {
        grid-template-columns:repeat(2, 1fr);
    }
}

@media (max-width: 767px) {
    .footer-top-card {
        flex-direction: column;
        align-items: flex-start;
    }

    .footer-top-card h2 {
        font-size: 24px;
    }

    .footer-links-grid {
        grid-template-columns:1fr;
    }

    .footer-cta-group,
    .footer-call-btn,
    .footer-rent-btn {
        width: 100%;
    }
}



.contact-widget {
    position: fixed;
    z-index: 9999;
    left: 30px;
    bottom: 24px;
    width: 280px;
    pointer-events: none
}

.chat {
    position: relative;
    z-index: 3;
    background: #1788ff;
    color: #fff;
    border: 0;
    border-radius: 25px;
    padding: 15px 24px;
    font-weight: 900;
    box-shadow: 0 7px 16px rgba(0, 0, 0, .16);
    display: inline-flex;
    gap: 10px;
    align-items: center;
    text-decoration: none;
    min-width: 153px;
    justify-content: center;
    transition: all .35s ease;
    cursor: pointer;
    pointer-events: auto
}

.chat .close-icon {
    display: none
}

.chat:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 24px rgba(23, 136, 255, .28)
}

.contact-panel {
    position: absolute;
    left: 0;
    bottom: 72px;
    width: 310px;
    background: rgba(255, 255, 255, .96);
    border-radius: 26px;
    padding: 18px;
    box-shadow: 0 24px 55px rgba(34, 65, 115, .22);
    border: 1px solid rgba(23, 136, 255, .10);
    opacity: 0;
    visibility: hidden;
    transform: translate(-18px, 20px) scale(.92);
    transform-origin: left bottom;
    transition: opacity .28s ease, transform .42s cubic-bezier(.19, 1, .22, 1), visibility .28s;
    pointer-events: auto;
    backdrop-filter: blur(16px);
    overflow: hidden
}

.contact-panel:before {
    content: "";
    position: absolute;
    right: -55px;
    top: -55px;
    width: 140px;
    height: 140px;
    border-radius: 50%;
    background: rgba(23, 136, 255, .12)
}

.contact-panel:after {
    content: "";
    position: absolute;
    left: 32px;
    bottom: -7px;
    width: 16px;
    height: 16px;
    background: #fff;
    transform: rotate(45deg)
}

.panel-head {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    margin-bottom: 14px;
    color: #1a2634;
    position: relative;
    z-index: 2
}

.panel-head strong {
    display: block;
    font-size: 18px;
    font-weight: 950
}

.panel-head span {
    display: block;
    font-size: 12px;
    line-height: 1.45;
    color: #6b7686;
    margin-top: 4px;
    max-width: 210px
}

.panel-close {
    border: 0;
    background: #eef3f9;
    color: #637083;
    width: 26px;
    height: 26px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center
}

.quick-contact-card {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(135deg, #f3fff8, #f8fbff);
    border: 1px solid rgba(47, 201, 121, .14);
    border-radius: 18px;
    padding: 12px 14px;
    margin-bottom: 12px
}

.quick-contact-card b {
    display: block;
    font-size: 13px;
    font-weight: 950;
    color: #202a36
}

.quick-contact-card small {
    display: block;
    font-size: 11px;
    color: #687180;
    margin-top: 2px
}

.panel-item {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    color: #17202c;
    padding: 12px;
    border-radius: 18px;
    opacity: 0;
    transform: translateY(15px);
    transition: all .35s ease;
    background: rgba(255, 255, 255, .62);
    margin-bottom: 8px
}

.panel-item b {
    display: block;
    font-size: 13px;
    font-weight: 900
}

.panel-item small {
    display: block;
    font-size: 12px;
    color: #3269ad;
    margin-top: 2px
}

.panel-icon {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 18px;
    flex: 0 0 34px
}

.panel-icon.whatsapp {
    background: #40c95a
}

.panel-icon.instagram {
    background: linear-gradient(135deg, #833ab4, #fd1d1d, #fcb045)
}

.panel-icon.mail {
    background: #ff3f56
}

.panel-icon.messenger {
    background: #168bff
}

.panel-icon.phone {
    background: #00d887
}

.contact-widget.open .contact-panel {
    opacity: 1;
    visibility: visible;
    transform: translate(0, 0) scale(1)
}

.contact-widget.open .contact-panel:before {
    opacity: 1;
    transform: scaleX(1)
}

.contact-widget.open .panel-item {
    opacity: 1;
    transform: translateY(0)
}

.contact-widget.open .panel-item:nth-of-type(1) {
    transition-delay: .09s
}

.contact-widget.open .panel-item:nth-of-type(2) {
    transition-delay: .15s
}

.contact-widget.open .panel-item:nth-of-type(3) {
    transition-delay: .21s
}

.contact-widget.open .panel-item:nth-of-type(4) {
    transition-delay: .27s
}

.contact-widget.open .panel-item:nth-of-type(5) {
    transition-delay: .33s
}

.contact-widget.open .chat {
    background: #1788ff
}

.contact-widget.open .chat .fa-comment-dots {
    display: none
}

.contact-widget.open .chat .close-icon {
    display: block
}


.top-line {
    height: 10px;
    /* background: #4b2d3a;*/
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 20

}



.scroll-top-btn {
    position: fixed;
    right: 28px;
    bottom: 28px;
    z-index: 9998;
    width: 54px;
    height: 54px;
    border: 0;
    border-radius: 18px;
    background: linear-gradient(135deg, #552184, #6f2aa8);
    color: #fff;
    box-shadow: 0 18px 34px rgba(85, 33, 132, .28);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 19px;
    cursor: pointer;
    transition: all .35s ease;
}

.scroll-top-btn:hover {
    transform: translateY(-5px);
    background: linear-gradient(135deg, #ff9617, #ffad2f);
    color: #552184
}
.pd-icon{
    padding: 8px !important;
}


