@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 {
    --purple: #54247f;
    --purple-2: #32104f;
    --purple-3: #7b45ac;
    --orange: #ff8617;
    --orange-2: #ffae58;
    --text: #151827;
    --muted: #687083;
    --soft: #eef9fc;
    --cream: #fff6ee;
    --line: rgba(84, 36, 127, .12);
    --shadow: 0 24px 70px rgba(34, 18, 55, .13);
    --shadow-sm: 0 14px 36px rgba(34, 18, 55, .09);
    --radius-xl: 34px;
    --radius-lg: 24px;

    --edepola-purple:#4b226f;
    --edepola-purple-2:#6f3a94;
    --edepola-orange:#ff8a18;
    --edepola-orange-2:#ffb35c;
    --edepola-cream:#fff7ef;
    --edepola-soft:#f8f5fb;
    --edepola-text:#20202a;
    --edepola-muted:#6c6675;
    --edepola-border:rgba(75,34,111,.13);
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

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

a { text-decoration: none; }

.page-shell {
    background:
        radial-gradient(circle at 4% 14%, rgba(255, 134, 23, .10), transparent 26%),
        radial-gradient(circle at 92% 6%, rgba(84, 36, 127, .10), transparent 30%),
        linear-gradient(180deg, #ffffff 0%, #fbfdff 38%, #fff8f2 100%);
    min-height: 100vh;
}

/* Header */
.top-nav {
    position: sticky;
    top: 0;
    z-index: 1020;
    background: rgba(255, 255, 255, .86);
    backdrop-filter: blur(18px);
    border-bottom: 1px solid rgba(84, 36, 127, .08);
    box-shadow: 0 10px 30px rgba(29, 19, 46, .045);
}

.navbar { padding: 12px 0; }

.brand {
    display: inline-flex;
    flex-direction: column;
    line-height: .88;
}

.brand-main {
    font-size: 2rem;
    font-weight: 600;
    letter-spacing: -.055em;
    color: var(--purple);
}

.brand-main .orange { color: var(--orange); }

.brand-sub {
    color: var(--orange);
    font-size: .82rem;
    font-weight: 700;
    letter-spacing: .08em;
    margin-left: 77px;
    margin-top: 2px;
}

.navbar-nav .nav-link {
    color: #222636;
    font-size: .91rem;
    font-weight: 800;
    padding: .7rem .72rem !important;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active { color: var(--purple); }

.dropdown-menu {
    border: 0;
    border-radius: 20px;
    box-shadow: var(--shadow-sm);
    padding: 10px;
}

.dropdown-item {
    border-radius: 14px;
    font-weight: 700;
    padding: 10px 12px;
}

.dropdown-item:hover { background: #f7efff; color: var(--purple); }

.btn-rent {
    border: 0;
    border-radius: 999px;
    padding: 12px 20px;
    color: #fff;
    font-weight: 900;
    background: linear-gradient(135deg, var(--orange), #ff9d33);
    box-shadow: 0 14px 28px rgba(255, 134, 23, .28);
    display: inline-flex;
    align-items: center;
    gap: 9px;
    transition: .25s ease;
}

.btn-rent:hover {
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 18px 36px rgba(255, 134, 23, .34);
}

/* Hero */
.hero {
    position: relative;
    overflow: hidden;
    min-height: 420px;
    display: flex;
    align-items: center;
    background:
        linear-gradient(90deg, rgba(238, 249, 252, .96) 0%, rgba(255, 255, 255, .95) 55%, rgba(238, 249, 252, .96) 100%);
}

.hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 13% -18%, rgba(84, 36, 127, .08), transparent 32%),
        radial-gradient(circle at 78% 4%, rgba(255, 134, 23, .12), transparent 28%);
}

.hero::after {
    content: "";
    position: absolute;
    inset: auto 0 0 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(84, 36, 127, .18), transparent);
}

.hero-content,
.hero-visual { position: relative; z-index: 2; }

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    color: var(--purple);
    background: rgba(84, 36, 127, .08);
    border: 1px solid rgba(84, 36, 127, .09);
    border-radius: 999px;
    padding: 9px 14px;
    font-size: .76rem;
    font-weight: 900;
    letter-spacing: .1em;
    text-transform: uppercase;
}

.hero h1 {
    font-size: clamp(3.4rem, 6.5vw, 6.8rem);
    line-height: .88;
    letter-spacing: -.075em;
    color: #171829;
    font-weight: 900;
    margin: 18px 0 20px;
}

.hero h1 span { color: var(--purple); }

.hero p {
    max-width: 640px;
    color: #4e5669;
    font-size: 1.12rem;
    line-height: 1.8;
    font-weight: 500;
}

.hero-actions {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 28px;
}

.btn-purple {
    min-height: 52px;
    border-radius: 999px;
    border: 0;
    padding: 13px 20px;
    background: linear-gradient(135deg, var(--purple), var(--purple-3));
    color: #fff;
    font-weight: 900;
    display: inline-flex;
    align-items: center;
    gap: 9px;
    box-shadow: 0 16px 34px rgba(84, 36, 127, .25);
}

.btn-purple:hover { color: #fff; transform: translateY(-2px); }

.btn-light-soft {
    min-height: 52px;
    border-radius: 999px;
    border: 1px solid rgba(84, 36, 127, .12);
    padding: 13px 18px;
    background: rgba(255, 255, 255, .72);
    color: var(--purple);
    font-weight: 900;
    display: inline-flex;
    align-items: center;
    gap: 9px;
}

.hero-visual {
    min-height: 310px;
}

.visual-card {
    position: absolute;
    right: 6%;
    top: 40px;
    width: min(470px, 92%);
    height: 240px;
    border-radius: 36px;
    background: linear-gradient(145deg, #633194, #3f1465);
    box-shadow: 0 34px 80px rgba(63, 20, 101, .28);
    overflow: hidden;
    transform: rotate(-1.5deg);
}

.visual-card::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(90deg, rgba(255,255,255,.08) 1px, transparent 1px) 0 0 / 54px 100%,
        radial-gradient(circle at 20% 20%, rgba(255,255,255,.18), transparent 28%);
}

.visual-logo {
    position: absolute;
    left: 34px;
    top: 42px;
    color: #fff;
    font-size: 2rem;
    font-weight: 600;
    letter-spacing: -.055em;
}

.visual-logo .orange { color: var(--orange); }

.visual-badge {
    position: absolute;
    right: 28px;
    bottom: 28px;
    width: 78px;
    height: 78px;
    border-radius: 26px;
    display: grid;
    place-items: center;
    background: rgba(255, 255, 255, .16);
    border: 1px solid rgba(255, 255, 255, .24);
    color: #fff;
    font-size: 2rem;
}

.box-stack {
    position: absolute;
    left: 40px;
    bottom: 16px;
    display: flex;
    align-items: flex-end;
    gap: 10px;
}

.box-shape {
    width: 72px;
    height: 58px;
    border-radius: 12px;
    background: linear-gradient(145deg, #f5b35c, #c97823);
    box-shadow: 0 12px 24px rgba(0,0,0,.12);
}

.box-shape.small { width: 54px; height: 44px; opacity: .9; }
.box-shape.tall { width: 62px; height: 80px; opacity: .95; }

.metric-floating {
    position: absolute;
    left: 0;
    bottom: 26px;
    border-radius: 24px;
    padding: 16px 18px;
    background: rgba(255, 255, 255, .9);
    border: 1px solid rgba(84, 36, 127, .10);
    box-shadow: var(--shadow-sm);
    display: flex;
    align-items: center;
    gap: 12px;
}

.metric-icon {
    width: 46px;
    height: 46px;
    border-radius: 16px;
    display: grid;
    place-items: center;
    background: #fff1e3;
    color: var(--orange);
}

.metric-floating strong {
    display: block;
    font-size: .96rem;
    font-weight: 900;
}

.metric-floating small {
    color: var(--muted);
    font-weight: 700;
}

/* Search */
.search-wrap {
    position: relative;
    z-index: 5;
    margin-top: -36px;
}

.search-panel {
    border-radius: 28px;
    background: rgba(255, 255, 255, .9);
    border: 1px solid rgba(84, 36, 127, .11);
    box-shadow: var(--shadow);
    padding: 18px;
    backdrop-filter: blur(14px);
}

.search-field {
    position: relative;
}

.search-field i {
    position: absolute;
    left: 20px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--purple);
    z-index: 2;
}

.search-field input {
    height: 58px;
    border-radius: 18px;
    border: 1px solid rgba(84, 36, 127, .13);
    padding-left: 52px;
    font-weight: 700;
    color: var(--text);
    box-shadow: none !important;
}

.search-field input:focus { border-color: rgba(84, 36, 127, .35); }

.filter-pills {
    display: flex;
    align-items: center;
    gap: 10px;
    overflow-x: auto;
    padding-bottom: 2px;
}

.filter-pills::-webkit-scrollbar { height: 0; }

.filter-btn {
    height: 48px;
    border-radius: 999px;
    padding: 0 16px;
    border: 1px solid rgba(84, 36, 127, .13);
    background: #fff;
    color: #303448;
    font-size: .88rem;
    font-weight: 900;
    white-space: nowrap;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: .22s ease;
}

.filter-btn:hover,
.filter-btn.active {
    color: #fff;
    background: var(--purple);
    border-color: var(--purple);
    box-shadow: 0 14px 30px rgba(84, 36, 127, .22);
}

/* Content */
.content-section {
    padding: 70px 0 78px;
}

.section-kicker {
    color: var(--orange);
    font-weight: 900;
    letter-spacing: .09em;
    text-transform: uppercase;
    font-size: .78rem;
    margin-bottom: 12px;
}

.section-title {
    color: var(--text);
    font-size: clamp(2rem, 3.5vw, 3.45rem);
    line-height: 1.05;
    letter-spacing: -.055em;
    font-weight: 900;
    margin-bottom: 0;
}

.section-title span { color: var(--purple); }

.section-desc {
    color: var(--muted);
    font-weight: 500;
    line-height: 1.75;
    margin-bottom: 0;
}

.featured-card {
    border-radius: var(--radius-xl);
    overflow: hidden;
    border: 1px solid var(--line);
    background: #fff;
    box-shadow: var(--shadow);
}

.featured-img {
    min-height: 380px;
    height: 100%;
    position: relative;
    background:
        linear-gradient(180deg, rgba(17, 12, 25, .05), rgba(17, 12, 25, .36)),
        url("https://images.unsplash.com/photo-1586528116311-ad8dd3c8310d?auto=format&fit=crop&w=1300&q=85") center/cover;
}

.featured-img .floating-label {
    position: absolute;
    left: 24px;
    top: 24px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, .92);
    color: var(--purple);
    border-radius: 999px;
    padding: 10px 14px;
    font-size: .8rem;
    font-weight: 900;
    box-shadow: 0 12px 28px rgba(0,0,0,.12);
}

.featured-body {
    padding: clamp(26px, 4vw, 48px);
}

.cat {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    border-radius: 999px;
    padding: 7px 11px;
    background: #f5edff;
    color: var(--purple);
    font-size: .72rem;
    font-weight: 900;
    letter-spacing: .06em;
    text-transform: uppercase;
}

.cat.orange { background: #fff0df; color: #d56600; }
.cat.blue { background: #edf8ff; color: #1876a8; }
.cat.green { background: #eaf9ee; color: #278a40; }

.post-meta {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 10px 16px;
    color: var(--muted);
    font-size: .86rem;
    font-weight: 800;
}

.post-meta i { color: var(--orange); }

.featured-title {
    font-size: clamp(1.65rem, 3vw, 2.75rem);
    line-height: 1.1;
    letter-spacing: -.045em;
    color: var(--text);
    font-weight: 900;
    margin: 16px 0;
}

.featured-text {
    color: #596174;
    line-height: 1.86;
    font-weight: 500;
    margin-bottom: 22px;
}

.read-more {
    display: inline-flex;
    align-items: center;
    gap: 11px;
    color: var(--purple);
    font-size: .82rem;
    font-weight: 900;
    letter-spacing: .06em;
    text-transform: uppercase;
}

.read-more span {
    width: 34px;
    height: 34px;
    border-radius: 999px;
    display: grid;
    place-items: center;
    color: #fff;
    background: var(--orange);
    transition: .25s ease;
}

.read-more:hover { color: var(--orange); }
.read-more:hover span { transform: translateX(4px); }

.blog-grid { margin-top: 28px; }

.blog-card {
    height: 100%;
    overflow: hidden;
    border-radius: 26px;
    border: 1px solid var(--line);
    background: rgba(255, 255, 255, .95);
    box-shadow: 0 16px 40px rgba(34, 18, 55, .075);
    transition: .28s ease;
}

.blog-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow);
    border-color: rgba(84, 36, 127, .20);
}

.card-img-box {
    position: relative;
    height: 210px;
    overflow: hidden;
    background: #eef5f8;
}

.card-img-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: .5s ease;
}

.blog-card:hover .card-img-box img { transform: scale(1.07); }

.card-img-box .cat {
    position: absolute;
    left: 16px;
    bottom: 16px;
    box-shadow: 0 12px 25px rgba(28, 16, 44, .12);
}

.blog-card-body { padding: 22px; }

.blog-card h3 {
    font-size: 1.13rem;
    line-height: 1.35;
    letter-spacing: -.025em;
    color: var(--text);
    font-weight: 900;
    margin: 12px 0 10px;
}

.blog-card p {
    color: #646c7e;
    font-size: .93rem;
    line-height: 1.72;
    font-weight: 500;
    margin: 0;
}

.blog-card-foot { padding: 0 22px 22px; }

/* Sidebar */
.sidebar { position: sticky; top: 98px; }

.side-card {
    border-radius: 26px;
    background: #fff;
    border: 1px solid var(--line);
    box-shadow: 0 16px 42px rgba(34, 18, 55, .075);
    padding: 22px;
}

.side-card + .side-card { margin-top: 18px; }

.side-title {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    color: var(--text);
    font-size: 1.05rem;
    font-weight: 900;
    letter-spacing: -.025em;
    margin-bottom: 18px;
}

.side-title i { color: var(--orange); }

.mini-post {
    display: flex;
    gap: 12px;
    padding: 13px 0;
    border-bottom: 1px solid rgba(84, 36, 127, .09);
}

.mini-post:first-of-type { padding-top: 0; }
.mini-post:last-child { border-bottom: 0; padding-bottom: 0; }

.mini-post img {
    width: 76px;
    height: 72px;
    border-radius: 18px;
    object-fit: cover;
    flex: 0 0 auto;
}

.mini-post strong {
    display: block;
    color: var(--text);
    font-size: .9rem;
    line-height: 1.38;
    font-weight: 900;
    margin-bottom: 6px;
}

.mini-post small {
    color: var(--muted);
    font-weight: 800;
}

.tag-cloud {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.tag-cloud a {
    display: inline-flex;
    align-items: center;
    min-height: 34px;
    border-radius: 999px;
    padding: 7px 12px;
    color: var(--purple);
    background: #fbf6ff;
    border: 1px solid rgba(84, 36, 127, .13);
    font-size: .8rem;
    font-weight: 900;
}

.tag-cloud a:hover { background: var(--purple); color: #fff; }

.call-card {
    position: relative;
    overflow: hidden;
    color: #fff;
    background:
        radial-gradient(circle at 12% 8%, rgba(255,255,255,.22), transparent 30%),
        linear-gradient(145deg, var(--purple), var(--purple-2));
}

.call-card::after {
    content: "";
    position: absolute;
    right: -55px;
    bottom: -65px;
    width: 160px;
    height: 160px;
    border-radius: 999px;
    background: rgba(255, 134, 23, .44);
}

.call-card > * { position: relative; z-index: 2; }

.call-icon {
    width: 54px;
    height: 54px;
    display: grid;
    place-items: center;
    border-radius: 20px;
    color: #fff;
    background: rgba(255,255,255,.16);
    border: 1px solid rgba(255,255,255,.22);
    margin-bottom: 16px;
}

.call-card h3 {
    font-size: 1.35rem;
    font-weight: 900;
    letter-spacing: -.035em;
    margin-bottom: 8px;
}

.call-card p {
    color: rgba(255,255,255,.78);
    line-height: 1.72;
    font-weight: 500;
}

.call-card .form-control {
    height: 50px;
    border-radius: 16px;
    border: 0;
    box-shadow: none;
    font-weight: 700;
}

.call-card .btn {
    height: 50px;
    border-radius: 16px;
    border: 0;
    background: var(--orange);
    color: #fff;
    font-weight: 900;
}

/* CTA */
.cta-band {
    position: relative;
    overflow: hidden;
    margin-top: 54px;
    border-radius: 34px;
    border: 1px solid rgba(255, 134, 23, .20);
    background:
        radial-gradient(circle at 7% 18%, rgba(255, 134, 23, .20), transparent 28%),
        linear-gradient(135deg, #fff7ee, #ffffff 54%, #eefaff);
    box-shadow: var(--shadow-sm);
    padding: clamp(26px, 4vw, 42px);
}

.cta-icon {
    width: 70px;
    height: 70px;
    border-radius: 24px;
    display: grid;
    place-items: center;
    color: var(--purple);
    background: #fff;
    border: 1px solid rgba(84, 36, 127, .10);
    box-shadow: 0 12px 32px rgba(34, 18, 55, .09);
    font-size: 1.7rem;
    flex: 0 0 auto;
}

.cta-band h2 {
    color: var(--text);
    font-weight: 900;
    letter-spacing: -.045em;
    line-height: 1.1;
    margin-bottom: 8px;
}

.cta-band p {
    color: #5d6577;
    line-height: 1.7;
    font-weight: 500;
    margin: 0;
}

/* Footer */
.footer {
    background:
        radial-gradient(circle at 20% 0%, rgba(123, 69, 172, .38), transparent 28%),
        linear-gradient(180deg, #2a0d45 0%, #1f0b35 100%);
    color: rgba(255, 255, 255, .74);
    padding: 68px 0 26px;
}

.footer .brand-main { color: #fff; }
.footer .brand-sub { color: var(--orange); }

.footer-text {
    color: rgba(255,255,255,.68);
    line-height: 1.8;
    font-weight: 500;
}

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

.socials a {
    width: 38px;
    height: 38px;
    border-radius: 999px;
    display: grid;
    place-items: center;
    color: #fff;
    background: rgba(255,255,255,.10);
    border: 1px solid rgba(255,255,255,.12);
}

.footer h4 {
    color: #fff;
    font-size: .98rem;
    font-weight: 900;
    margin-bottom: 18px;
}

.footer a:not(.brand):not(.socials a) {
    display: inline-flex;
    color: rgba(255,255,255,.68);
    font-weight: 600;
    margin-bottom: 10px;
}

.footer a:hover { color: #fff !important; }

.contact-line {
    display: flex;
    gap: 11px;
    align-items: flex-start;
    margin-bottom: 13px;
    color: rgba(255,255,255,.72);
    font-weight: 600;
}

.contact-line i {
    color: var(--orange);
    margin-top: 4px;
}

.footer-bottom {
    margin-top: 42px;
    padding-top: 22px;
    border-top: 1px solid rgba(255,255,255,.10);
    color: rgba(255,255,255,.55);
    font-size: .9rem;
}

.trust-row {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 18px;
    flex-wrap: wrap;
}

.trust-row span {
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.float-contact {
    position: fixed;
    left: 22px;
    bottom: 22px;
    z-index: 1035;
    min-height: 54px;
    border-radius: 999px;
    padding: 0 22px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: #fff;
    background: linear-gradient(135deg, #168bff, #0f78de);
    font-weight: 900;
    box-shadow: 0 18px 38px rgba(22, 139, 255, .32);
}

.float-contact:hover { color: #fff; transform: translateY(-2px); }


.scroll-page-note {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin: 34px auto 0;
    padding: 13px 18px;
    border-radius: 999px;
    background: rgba(255, 255, 255, .88);
    border: 1px solid rgba(84, 36, 127, .12);
    color: var(--purple);
    font-size: .88rem;
    font-weight: 900;
    box-shadow: 0 14px 34px rgba(34, 18, 55, .075);
}

.scroll-page-note i { color: var(--orange); }

.blog-item.page-two:not(.is-loaded) {
    display: none !important;
}

.blog-item.page-two.is-loaded {
    animation: pageTwoReveal .55s ease both;
}

@keyframes pageTwoReveal {
    from { opacity: 0; transform: translateY(22px); }
    to { opacity: 1; transform: translateY(0); }
}

.load-more-card {
    margin-top: 34px;
    border-radius: 28px;
    background: linear-gradient(135deg, #fff, #fff7ee);
    border: 1px solid rgba(255, 134, 23, .18);
    box-shadow: 0 16px 42px rgba(34, 18, 55, .075);
    padding: 24px;
    text-align: center;
}

.load-more-card.is-complete {
    background: linear-gradient(135deg, #f8f2ff, #ffffff);
    border-color: rgba(84, 36, 127, .14);
}

.load-more-card strong {
    display: block;
    color: var(--text);
    font-size: 1.08rem;
    font-weight: 900;
    letter-spacing: -.02em;
    margin-bottom: 6px;
}

.load-more-card span {
    color: var(--muted);
    font-weight: 600;
}

@media (max-width: 1199.98px) {
    .navbar-collapse {
        margin-top: 14px;
        padding: 16px;
        border-radius: 24px;
        background: #fff;
        box-shadow: var(--shadow-sm);
    }
    .hero { min-height: auto; padding: 70px 0 88px; }
    .hero-visual { margin-top: 30px; }
    .visual-card { position: relative; right: auto; top: auto; margin-left: auto; margin-right: auto; }
    .metric-floating { left: 20px; }
    .sidebar { position: static; }
}

@media (max-width: 767.98px) {
    .brand-main { font-size: 1.55rem; }
    .brand-sub { margin-left: 58px; font-size: .72rem; }
    .hero { padding: 50px 0 74px; }
    .hero p { font-size: 1rem; }
    .hero-actions .btn-purple,
    .hero-actions .btn-light-soft { width: 100%; justify-content: center; }
    .visual-card { height: 210px; }
    .metric-floating { position: relative; left: auto; bottom: auto; margin: 18px auto 0; width: 100%; }
    .search-wrap { margin-top: -28px; }
    .filter-pills { margin-top: 12px; }
    .featured-img { min-height: 260px; }
    .content-section { padding: 52px 0 62px; }
    .card-img-box { height: 195px; }
    .trust-row { justify-content: flex-start; }
    .float-contact { padding: 0 17px; }
    .float-contact span { display: none; }
}



.btn-main {
    border: 0;
    border-radius: 999px;
    padding: 13px 22px;
    color: #fff;
    font-weight: 900;
    background: linear-gradient(135deg, var(--orange), #e2720e);
    box-shadow: 0 16px 34px rgba(245, 130, 32, .30);
    transition: .25s ease;
}

.btn-main:hover {
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 20px 40px rgba(245, 130, 32, .38);
}

.btn-soft {
    border-radius: 999px;
    padding: 13px 22px;
    font-weight: 900;
    color: var(--purple);
    background: #fff;
    border: 1px solid var(--border);
    box-shadow: 0 12px 26px rgba(66, 19, 95, .07);
}

.btn-soft:hover {
    color: #fff;
    background: var(--purple);
}

.hero {
    padding: 74px 0 46px;
    position: relative;
}

.hero-card {
    position: relative;
    overflow: hidden;
    border-radius: 42px;
    background:
        linear-gradient(135deg, rgba(66, 19, 95, .96), rgba(91, 31, 121, .94)),
        url("https://images.unsplash.com/photo-1586528116311-ad8dd3c8310d?auto=format&fit=crop&w=1600&q=85") center/cover;
    color: #fff;
    box-shadow: var(--shadow);
}

.hero-card::before {
    content: "";
    position: absolute;
    width: 390px;
    height: 390px;
    right: -120px;
    top: -140px;
    border-radius: 50%;
    background: rgba(245, 130, 32, .34);
}

.hero-card::after {
    content: "";
    position: absolute;
    width: 230px;
    height: 230px;
    right: 28%;
    bottom: -120px;
    border-radius: 50%;
    background: rgba(255,255,255,.08);
}

.hero-inner {
    position: relative;
    z-index: 2;
    padding: clamp(34px, 5vw, 72px);
}

.breadcrumb-mini {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 9px 14px;
    border-radius: 999px;
    background: rgba(255,255,255,.12);
    border: 1px solid rgba(255,255,255,.16);
    color: rgba(255,255,255,.86);
    font-size: 13px;
    font-weight: 800;
    backdrop-filter: blur(16px);
}

.hero h1 {
    margin: 22px 0 18px;
    font-size: clamp(44px, 7vw, 88px);
    line-height: .92;
    letter-spacing: -4px;
    font-weight: 950;
}





.floating-photo {
    position: absolute;
    overflow: hidden;
    border-radius: 32px;
    border: 6px solid rgba(255,255,255,.18);
    box-shadow: 0 28px 60px rgba(0,0,0,.22);
    background: #fff;
}

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

.photo-one {
    width: 78%;
    height: 330px;
    right: 0;
    top: 22px;
}

.photo-two {
    width: 48%;
    height: 210px;
    left: 0;
    bottom: 28px;
}

.floating-note {
    position: absolute;
    right: 30px;
    bottom: 58px;
    max-width: 250px;
    border-radius: 24px;
    padding: 18px;
    background: rgba(255,255,255,.92);
    color: var(--ink);
    box-shadow: 0 18px 48px rgba(0,0,0,.16);
    backdrop-filter: blur(18px);
}

.floating-note strong {
    display: block;
    color: var(--purple);
    font-weight: 950;
    margin-bottom: 4px;
}

.floating-note span {
    color: var(--muted);
    font-size: 13px;
    line-height: 1.5;
}

.trust-strip {
    margin-top: -12px;
    position: relative;
    z-index: 3;
}

.trust-box {
    background: rgba(255,255,255,.9);
    border: 1px solid var(--border);
    border-radius: 26px;
    box-shadow: var(--shadow-sm);
    padding: 18px;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px;
    border-radius: 18px;
}

.trust-icon {
    width: 48px;
    height: 48px;
    flex: 0 0 auto;
    border-radius: 17px;
    display: grid;
    place-items: center;
    color: var(--orange);
    background: rgba(245, 130, 32, .12);
    font-size: 23px;
}

.trust-item strong {
    display: block;
    color: var(--purple);
    font-weight: 950;
    line-height: 1.1;
}

.trust-item span {
    color: var(--muted);
    font-size: 13px;
    font-weight: 650;
}

.section-padding { padding: 78px 0; }

.section-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--orange);
    background: rgba(245, 130, 32, .12);
    border: 1px solid rgba(245, 130, 32, .12);
    border-radius: 999px;
    padding: 9px 14px;
    font-weight: 950;
    font-size: 13px;
}

.section-title {
    color: var(--purple);
    font-size: clamp(32px, 4vw, 52px);
    font-weight: 950;
    letter-spacing: -1.6px;
    margin: 16px 0 12px;
}

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

.category-panel {
    position: sticky;
    top: 96px;
    z-index: 10;
    border-radius: 28px;
    padding: 12px;
    background: rgba(255,255,255,.86);
    border: 1px solid var(--border);
    box-shadow: var(--shadow-sm);
    backdrop-filter: blur(18px);
}


.showcase-grid {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    gap: 22px;
    margin-top: 34px;
}

.showcase-card {
    min-height: 320px;
    border-radius: 32px;
    position: relative;
    overflow: hidden;
    grid-column: span 4;
    box-shadow: var(--shadow-sm);
    cursor: pointer;
    isolation: isolate;
    transition: .35s ease;
    background: #eee;
}

.showcase-card.is-large {
    grid-column: span 7;
    min-height: 500px;
}

.showcase-card.is-feature {
    grid-column: span 5;
    min-height: 500px;
}

.showcase-card.is-wide {
    grid-column: span 8;
    min-height: 380px;
}

.showcase-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 30px 70px rgba(35, 14, 52, .17);
}

.showcase-card img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -2;
    transition: transform .7s ease;
}

.showcase-card:hover img { transform: scale(1.08); }

.showcase-card::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: -1;
    background: linear-gradient(180deg, rgba(15, 10, 22, .02) 0%, rgba(15, 10, 22, .22) 40%, rgba(15, 10, 22, .82) 100%);
}

.showcase-top {
    position: absolute;
    top: 18px;
    left: 18px;
    right: 18px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 12px;
}

.card-tag {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    color: #fff;
    background: rgba(255,255,255,.17);
    border: 1px solid rgba(255,255,255,.22);
    backdrop-filter: blur(14px);
    border-radius: 999px;
    padding: 8px 12px;
    font-size: 12px;
    font-weight: 950;
}

.card-count {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    color: #fff;
    background: rgba(255,255,255,.16);
    border: 1px solid rgba(255,255,255,.20);
    backdrop-filter: blur(14px);
    opacity: 0;
    transform: translateY(-6px);
    transition: .25s ease;
}

.showcase-card:hover .card-count {
    opacity: 1;
    transform: translateY(0);
}

.showcase-info {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    padding: 26px;
    color: #fff;
}

.showcase-info h3 {
    font-size: 25px;
    font-weight: 950;
    letter-spacing: -.6px;
    margin-bottom: 8px;
}

.showcase-info p {
    color: rgba(255,255,255,.76);
    line-height: 1.6;
    margin-bottom: 0;
}

.hide-gallery { display: none !important; }

.story-card {
    border-radius: 34px;
    background: #fff;
    border: 1px solid var(--border);
    box-shadow: var(--shadow-sm);
    padding: 32px;
    height: 100%;
    position: relative;
    overflow: hidden;
}

.story-card::after {
    content: "";
    position: absolute;
    width: 130px;
    height: 130px;
    right: -48px;
    top: -48px;
    border-radius: 50%;
    background: rgba(245, 130, 32, .12);
}

.story-number {
    width: 58px;
    height: 58px;
    border-radius: 20px;
    display: grid;
    place-items: center;
    color: #fff;
    background: linear-gradient(135deg, var(--orange), #df7411);
    box-shadow: 0 18px 36px rgba(245, 130, 32, .24);
    font-size: 22px;
    font-weight: 950;
    margin-bottom: 22px;
}

.story-card h4 {
    color: var(--purple);
    font-weight: 950;
    margin-bottom: 10px;
}

.story-card p {
    color: var(--muted);
    line-height: 1.75;
    margin: 0;
}

.contact-section {
    padding: 40px 0 82px;
}

.contact-panel {
    overflow: hidden;
    border-radius: 40px;
    background:
        radial-gradient(circle at 15% 20%, rgba(245, 130, 32, .28), transparent 30%),
        linear-gradient(135deg, #42135f, #2b0c41);
    color: #fff;
    box-shadow: var(--shadow);
}

.contact-content { padding: clamp(34px, 5vw, 62px); }

.contact-panel h2 {
    font-size: clamp(34px, 4.8vw, 58px);
    font-weight: 950;
    letter-spacing: -1.8px;
    margin-bottom: 16px;
}

.contact-panel p {
    color: rgba(255,255,255,.76);
    line-height: 1.8;
    max-width: 680px;
}

.contact-mini-card {
    display: flex;
    gap: 14px;
    align-items: center;
    padding: 16px;
    border-radius: 24px;
    background: rgba(255,255,255,.10);
    border: 1px solid rgba(255,255,255,.16);
    color: #fff;
    backdrop-filter: blur(16px);
    height: 100%;
}

.contact-mini-card i {
    width: 48px;
    height: 48px;
    flex: 0 0 auto;
    border-radius: 17px;
    display: grid;
    place-items: center;
    background: rgba(245, 130, 32, .22);
    color: #fff;
    font-size: 21px;
}

.contact-mini-card strong {
    display: block;
    font-weight: 950;
}

.contact-mini-card span {
    display: block;
    color: rgba(255,255,255,.70);
    font-size: 13px;
    margin-top: 2px;
}

.footer {
    background: #fbfbfd;
    border-top: 1px solid rgba(66, 19, 95, .08);
    padding-top: 58px;
}

.footer p,
.footer a {
    color: var(--muted);
    font-weight: 650;
}

.footer a:hover { color: var(--orange); }

.footer h5 {
    color: var(--purple);
    font-weight: 950;
    margin-bottom: 18px;
}

.footer-link { display: block; margin-bottom: 10px; }

.social-link {
    width: 42px;
    height: 42px;
    border-radius: 15px;
    display: grid;
    place-items: center;
    color: var(--purple) !important;
    background: #fff;
    border: 1px solid var(--border);
    box-shadow: 0 12px 26px rgba(66, 19, 95, .06);
}

.social-link:hover {
    color: #fff !important;
    background: var(--purple);
}

.copyright {
    margin-top: 42px;
    padding: 22px 0;
    border-top: 1px solid rgba(66, 19, 95, .08);
    color: var(--muted);
    font-size: 14px;
}

.floating-whatsapp {
    position: fixed;
    right: 24px;
    bottom: 24px;
    width: 64px;
    height: 64px;
    z-index: 99;
    border-radius: 50%;
    display: grid;
    place-items: center;
    color: #fff;
    background: #25d366;
    font-size: 30px;
    box-shadow: 0 18px 42px rgba(37, 211, 102, .36);
}

.modal-content {
    border: 0;
    border-radius: 30px;
    overflow: hidden;
    background: #111;
}

.modal-image {
    width: 100%;
    max-height: 76vh;
    object-fit: cover;
    display: block;
}

.modal-caption {
    color: #fff;
    padding: 20px 24px 24px;
    background: #111;
}

.modal-caption h4 {
    font-weight: 950;
    margin-bottom: 5px;
}

.modal-caption p {
    color: rgba(255,255,255,.72);
    margin: 0;
}

.close-gallery {
    position: absolute;
    right: 16px;
    top: 16px;
    z-index: 5;
    width: 44px;
    height: 44px;
    border: 0;
    border-radius: 50%;
    color: #fff;
    background: rgba(0,0,0,.45);
    backdrop-filter: blur(12px);
}

@media (max-width: 991.98px) {
    .hero { padding-top: 42px; }
    .hero h1 { letter-spacing: -2.4px; }
    .hero-visual { min-height: 380px; margin-top: 20px; }
    .photo-one { width: 84%; height: 280px; }
    .photo-two { height: 190px; }
    .floating-note { right: 10px; bottom: 32px; }
    .category-panel { position: relative; top: auto; overflow-x: auto; }
    .showcase-grid { grid-template-columns: repeat(6, 1fr); }
    .showcase-card,
    .showcase-card.is-large,
    .showcase-card.is-feature,
    .showcase-card.is-wide {
        grid-column: span 6;
        min-height: 370px;
    }
}

@media (max-width: 575.98px) {
    .announcement { display: none; }
    .brand-mark { width: 42px; height: 42px; border-radius: 14px; }
    .brand-name { font-size: 23px; }
    .hero-card { border-radius: 30px; }
    .hero-inner { padding: 28px; }
    .hero p { font-size: 16px; }
    .hero-visual { min-height: 320px; }
    .photo-one { width: 100%; height: 235px; border-radius: 24px; }
    .photo-two { display: none; }
    .floating-note { left: 18px; right: 18px; bottom: 15px; max-width: none; }
    .showcase-card,
    .showcase-card.is-large,
    .showcase-card.is-feature,
    .showcase-card.is-wide {
        min-height: 320px;
        border-radius: 26px;
    }
    .showcase-info { padding: 22px; }
    .contact-panel { border-radius: 30px; }
    .floating-whatsapp { right: 16px; bottom: 16px; }
}



.site-header{
    position:sticky;
    top:0;
    z-index:1000;
    background:rgba(255,255,255,.92);
    backdrop-filter:blur(16px);
    border-bottom:1px solid rgba(59,21,71,.08);
}

.navbar{padding:16px 0}

.brand-main{
    display:inline-flex;
    align-items:flex-end;
    gap:1px;
    font-weight:900;
    letter-spacing:-.05em;
    color:var(--ed-purple);
    font-size:30px;
    line-height:1;
}
.brand-main .e,.brand-main .o,.brand-main .dot{color:var(--ed-orange)}
.brand-sub{
    display:block;
    color:var(--ed-orange);
    font-size:11px;
    font-weight:800;
    letter-spacing:.26em;
    text-transform:uppercase;
    margin-top:2px;
}

.nav-link{
    color:var(--ed-purple)!important;
    font-weight:700;
    font-size:14px;
    padding:10px 14px!important;
    border-radius:999px;
}
.nav-link:hover,.nav-link.active{background:var(--ed-soft);color:var(--ed-orange)!important}




.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
}




.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%;
    }
}

.w-40{
    font-size: clamp(28px, 2.35vw, 40px) !important;
}

.mor{
    color: #552184 !important;
}
.turuncu{
    color: #ffb000 !important;
}

.fontBrandon{
    font-family: "Brandon-Text","sans-serif" !important;
}

.seo-highlight {
    color: var(--ed-purple);
    font-weight: 900;
    font-family: "Brandon-Text", sans-serif;
}
.btn-ed {
    border: 0;
    border-radius: 999px;
    background: linear-gradient(135deg, var(--ed-orange), #ffb000);
    color: #35124f;
    font-weight: 900;
    padding: 12px 22px;
    box-shadow: 0 12px 26px rgba(255, 138, 0, .28);
    transition: .25s;
}




.check-list2 {
    list-style: none;
    padding: 0;
    margin: 24px 0
}

.check-list2 li {
    margin: 4px 0;
    color: #3d3548
}

.check-list2 i {
    color: var(--ed-green);
    margin-right: 8px
}



.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
}

.btn-rent{
    background:linear-gradient(135deg,var(--edepola-orange),#ff9e37);
    color:#fff;
    border:0;
    border-radius:999px;
    font-weight:800;
    font-size:13px;
    padding:11px 18px;
    box-shadow:0 12px 28px rgba(255,138,24,.25);
}

.btn-rent:hover{
    color:#fff;
    transform:translateY(-1px);
    box-shadow:0 16px 34px rgba(255,138,24,.34);
}
