@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: #43206f;
    --purple-2: #65349a;
    --purple-3: #7c4db1;
    --purple-soft: #f5effc;
    --orange: #ff7a00;
    --orange-2: #ff9d35;
    --dark: #1d1729;
    --muted: #6f667c;
    --line: #eee9f4;
    --soft-bg: #fbfafc;
    --success: #22a36f;
    --radius-xl: 32px;
    --radius-lg: 24px;
    --radius-md: 18px;
    --shadow-soft: 0 18px 55px rgba(67, 32, 111, .11);
    --shadow-card: 0 12px 36px rgba(29, 23, 41, .08);

    --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(--dark);
    background: #fff;
    overflow-x: hidden;
}

a { text-decoration: none; }
.container-wide { max-width: 1240px; margin: 0 auto; padding-inline: 18px; }
.text-purple { color: var(--purple); }
.text-orange { color: var(--orange); }

.topbar {
    min-height: 28px;
    background: #f4e8eb;
    font-size: 12px;
    color: #302342;
}

.topbar a { color: #302342; font-weight: 700; }

.navbar {
    min-height: 78px;
    background: rgba(255,255,255,.96);
    border-bottom: 1px solid rgba(238,233,244,.95);
    backdrop-filter: blur(14px);
}

.navbar-brand { line-height: 1; min-width: 156px; }

.brand-main {
    display: block;
    color: var(--purple);
    font-size: 27px;
    font-weight: 800;
    letter-spacing: -.9px;
}

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

.brand-sub {
    display: block;
    color: var(--orange);
    font-size: 12px;
    font-weight: 800;
    letter-spacing: .25px;
    margin-top: -2px;
    padding-left: 64px;
}

.nav-link {
    color: #352a49 !important;
    font-size: 14px;
    font-weight: 800;
    padding-inline: 13px !important;
    position: relative;
}

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

.nav-link.active::after {
    content: "";
    position: absolute;
    left: 13px;
    right: 13px;
    bottom: 1px;
    height: 3px;
    border-radius: 20px;
    background: var(--purple);
}

.btn-edepola {
    --bs-btn-color: #fff;
    --bs-btn-bg: var(--orange);
    --bs-btn-border-color: var(--orange);
    --bs-btn-hover-color: #fff;
    --bs-btn-hover-bg: #e96f00;
    --bs-btn-hover-border-color: #e96f00;
    border-radius: 14px;
    padding: 13px 24px;
    font-weight: 900;
    box-shadow: 0 13px 28px rgba(255,122,0,.23);
}

.btn-purple {
    --bs-btn-color: #fff;
    --bs-btn-bg: var(--purple);
    --bs-btn-border-color: var(--purple);
    --bs-btn-hover-color: #fff;
    --bs-btn-hover-bg: #35165d;
    --bs-btn-hover-border-color: #35165d;
    border-radius: 14px;
    padding: 13px 24px;
    font-weight: 900;
    box-shadow: 0 13px 28px rgba(67,32,111,.20);
}

.btn-outline-edepola {
    --bs-btn-color: var(--purple);
    --bs-btn-border-color: rgba(67,32,111,.22);
    --bs-btn-hover-color: #fff;
    --bs-btn-hover-bg: var(--purple);
    --bs-btn-hover-border-color: var(--purple);
    border-radius: 14px;
    padding: 13px 24px;
    font-weight: 900;
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 9px 14px;
    color: #c46100;
    background: rgba(255,122,0,.10);
    border: 1px solid rgba(255,122,0,.13);
    border-radius: 999px;
    font-size: 13px;
    font-weight: 900;
}

.section-title {
    color: var(--purple);
    font-weight: 900;
    letter-spacing: -.8px;
}

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

.hero {
    position: relative;
    padding: 74px 0 54px;
    overflow: hidden;
    background:
        radial-gradient(circle at 15% 15%, rgba(109,60,162,.10), transparent 30%),
        radial-gradient(circle at 84% 20%, rgba(255,122,0,.13), transparent 28%),
        linear-gradient(180deg, #fff 0%, #fbf9fd 100%);
}

.hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(67,32,111,.035) 1px, transparent 1px),
        linear-gradient(90deg, rgba(67,32,111,.035) 1px, transparent 1px);
    background-size: 42px 42px;
    mask-image: linear-gradient(180deg, rgba(0,0,0,.72), transparent 75%);
    pointer-events: none;
}

.hero-inner { position: relative; z-index: 2; }

.hero h1 {
    margin: 18px 0 18px;
    color: var(--purple);
    font-size: clamp(40px, 5vw, 70px);
    line-height: 1.02;
    font-weight: 900;
    letter-spacing: -2.2px;
}

.hero-lead {
    max-width: 630px;
    color: #50475f;
    font-size: 19px;
    line-height: 1.75;
}

.hero-points {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 14px;
    max-width: 710px;
    margin: 28px 0 0;
}

.hero-point {
    display: flex;
    gap: 12px;
    align-items: center;
    padding: 16px;
    background: rgba(255,255,255,.82);
    border: 1px solid rgba(67,32,111,.10);
    border-radius: 18px;
    box-shadow: 0 12px 34px rgba(67,32,111,.07);
}

.hero-point i {
    width: 40px;
    height: 40px;
    display: inline-grid;
    place-items: center;
    border-radius: 14px;
    color: var(--purple);
    background: var(--purple-soft);
    font-size: 20px;
    flex: 0 0 auto;
}

.hero-point strong { display: block; color: var(--purple); font-size: 14px; }
.hero-point span { display: block; color: var(--muted); font-size: 12px; line-height: 1.4; }

.google-hero-card {
    position: relative;
    min-height: 460px;
    border-radius: 38px;
    background:
        linear-gradient(145deg, rgba(255,255,255,.95), rgba(245,239,252,.92)),
        radial-gradient(circle at 24% 16%, rgba(255,122,0,.17), transparent 32%);
    border: 1px solid rgba(67,32,111,.09);
    box-shadow: var(--shadow-soft);
    overflow: hidden;
    padding: 34px;
}

.google-hero-card::after {
    content: "";
    position: absolute;
    right: -110px;
    bottom: -120px;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background: rgba(67,32,111,.08);
}

.big-google-box {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    min-height: 285px;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 30px;
    box-shadow: 0 20px 55px rgba(67,32,111,.12);
    text-align: center;
    overflow: hidden;
}

.big-google-box::before {
    content: "";
    position: absolute;
    inset: 0 0 auto;
    height: 7px;
    background: linear-gradient(90deg, #4285f4 0 25%, #ea4335 25% 50%, #fbbc05 50% 75%, #34a853 75%);
}

.google-logo {
    width: 115px;
    height: auto;
    margin-bottom: 8px;
}

.rating-large {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 8px;
    color: var(--purple);
    margin-top: 6px;
}

.rating-large strong {
    font-size: 58px;
    font-weight: 900;
    letter-spacing: -1.7px;
}

.stars {
    color: #ffb21d;
    letter-spacing: 1px;
    font-size: 17px;
    white-space: nowrap;
}

.review-count {
    color: var(--muted);
    font-weight: 800;
}

.score-chips {
    position: relative;
    z-index: 3;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 13px;
    margin-top: 18px;
}

.score-chip {
    padding: 16px;
    border-radius: 20px;
    background: rgba(255,255,255,.82);
    border: 1px solid rgba(67,32,111,.09);
    text-align: center;
}

.score-chip strong {
    display: block;
    color: var(--purple);
    font-size: 22px;
    font-weight: 900;
}

.score-chip span {
    display: block;
    color: var(--muted);
    font-size: 12px;
    font-weight: 700;
}

.review-strip-section {
    padding: 42px 0 28px;
    background: #fff;
}

.strip-shell {
    border-radius: 28px;
    background: var(--purple);
    box-shadow: 0 20px 55px rgba(67,32,111,.18);
    overflow: hidden;
    padding: 16px 0;
    position: relative;
}

.strip-shell::before,
.strip-shell::after {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    width: 90px;
    z-index: 2;
    pointer-events: none;
}

.strip-shell::before { left: 0; background: linear-gradient(90deg, var(--purple), transparent); }
.strip-shell::after { right: 0; background: linear-gradient(270deg, var(--purple), transparent); }

.marquee {
    display: flex;
    width: max-content;
    gap: 16px;
    animation: marquee 34s linear infinite;
    padding-inline: 16px;
}

.strip-shell:hover .marquee { animation-play-state: paused; }

@keyframes marquee {
    from { transform: translateX(0); }
    to { transform: translateX(-50%); }
}

.mini-review {
    width: 300px;
    padding: 18px;
    border-radius: 20px;
    background: rgba(255,255,255,.10);
    border: 1px solid rgba(255,255,255,.14);
    color: #fff;
    backdrop-filter: blur(10px);
}

.mini-review p {
    margin: 8px 0 0;
    color: rgba(255,255,255,.78);
    font-size: 13px;
    line-height: 1.55;
}

.mini-user {
    display: flex;
    align-items: center;
    gap: 10px;
}

.avatar {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    display: inline-grid;
    place-items: center;
    color: #fff;
    font-weight: 900;
    background: linear-gradient(135deg, var(--orange), var(--purple-3));
    flex: 0 0 auto;
}

.mini-user strong { display: block; font-size: 14px; }
.mini-user span { display: block; color: rgba(255,255,255,.66); font-size: 12px; }

.reviews-section {
    padding: 72px 0;
    background:
        radial-gradient(circle at 10% 20%, rgba(67,32,111,.06), transparent 25%),
        linear-gradient(180deg, #fff 0%, #fbf9fd 100%);
}

.filter-card {
    padding: 18px;
    border-radius: 24px;
    background: #fff;
    border: 1px solid var(--line);
    box-shadow: var(--shadow-card);
}

.filter-pills {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.filter-pill {
    border: 1px solid rgba(67,32,111,.13);
    color: var(--purple);
    background: #fff;
    border-radius: 999px;
    padding: 10px 15px;
    font-size: 13px;
    font-weight: 900;
}

.filter-pill.active {
    color: #fff;
    background: var(--purple);
    border-color: var(--purple);
}

.review-card {
    height: 100%;
    padding: 24px;
    border-radius: 24px;
    background: #fff;
    border: 1px solid var(--line);
    box-shadow: var(--shadow-card);
    transition: .25s ease;
    position: relative;
    overflow: hidden;
}

.review-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 22px 48px rgba(67,32,111,.13);
}

.review-card::after {
    content: "\F6B0";
    font-family: "bootstrap-icons";
    position: absolute;
    right: 20px;
    top: 16px;
    color: rgba(67,32,111,.06);
    font-size: 58px;
    line-height: 1;
}

.review-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    margin-bottom: 18px;
    position: relative;
    z-index: 2;
}

.review-user {
    display: flex;
    align-items: center;
    gap: 12px;
}

.review-user strong {
    display: block;
    color: var(--dark);
    font-size: 15px;
    font-weight: 900;
}

.review-user span {
    display: block;
    color: var(--muted);
    font-size: 12px;
    font-weight: 700;
}

.google-mini {
    width: 28px;
    height: 28px;
    object-fit: contain;
    flex: 0 0 auto;
}

.review-card p {
    position: relative;
    z-index: 2;
    color: #554b64;
    font-size: 14px;
    line-height: 1.8;
    margin-bottom: 18px;
}

.review-foot {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    padding-top: 14px;
    border-top: 1px solid var(--line);
    color: var(--muted);
    font-size: 12px;
    font-weight: 800;
}

.verified {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    color: var(--success);
}

.summary-section {
    padding: 70px 0;
    background: #fff;
}

.summary-panel {
    border-radius: var(--radius-xl);
    background:
        radial-gradient(circle at 78% 20%, rgba(255,122,0,.15), transparent 30%),
        linear-gradient(135deg, #fff, #f7f2fc);
    border: 1px solid rgba(67,32,111,.08);
    box-shadow: var(--shadow-soft);
    overflow: hidden;
}

.summary-copy { padding: 44px; }

.rating-bars { padding: 44px; background: rgba(255,255,255,.62); height: 100%; }

.bar-row {
    display: grid;
    grid-template-columns: 58px 1fr 42px;
    align-items: center;
    gap: 12px;
    margin-bottom: 14px;
    color: var(--muted);
    font-size: 13px;
    font-weight: 900;
}

.bar-track {
    height: 10px;
    border-radius: 999px;
    background: #ece6f2;
    overflow: hidden;
}

.bar-fill {
    height: 100%;
    border-radius: inherit;
    background: linear-gradient(90deg, var(--orange), var(--orange-2));
}

.highlight-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
    margin-top: 26px;
}

.highlight-item {
    padding: 17px;
    border-radius: 18px;
    border: 1px solid rgba(67,32,111,.09);
    background: rgba(255,255,255,.82);
}

.highlight-item i { color: var(--orange); font-size: 22px; }
.highlight-item strong { display: block; color: var(--purple); margin-top: 7px; font-size: 14px; }
.highlight-item span { display: block; color: var(--muted); font-size: 12px; line-height: 1.55; margin-top: 4px; }

.cta-section { padding: 0 0 64px; background: #fff; }

.cta-band {
    position: relative;
    overflow: hidden;
    border-radius: 30px;
    padding: 36px 40px;
    color: #fff;
    background:
        radial-gradient(circle at 20% 18%, rgba(255,122,0,.38), transparent 29%),
        linear-gradient(135deg, #43206f, #552688 56%, #35145e);
    box-shadow: 0 22px 55px rgba(67,32,111,.24);
}

.cta-band::after {
    content: "";
    position: absolute;
    right: -80px;
    top: -110px;
    width: 290px;
    height: 290px;
    background: rgba(255,255,255,.08);
    border-radius: 50%;
}

.cta-icon {
    width: 74px;
    height: 74px;
    display: inline-grid;
    place-items: center;
    border-radius: 24px;
    background: #fff;
    color: var(--orange);
    font-size: 32px;
    flex: 0 0 auto;
}

.footer {
    background: #f7f5f9;
    border-top: 1px solid var(--line);
    padding-top: 58px;
}

.footer .brand-main { font-size: 29px; }
.footer p,
.footer li,
.footer a { color: #6d6578; font-size: 14px; line-height: 1.8; }
.footer a:hover { color: var(--purple); }

.footer-title {
    color: var(--purple);
    font-size: 15px;
    font-weight: 900;
    margin-bottom: 16px;
    text-transform: uppercase;
    letter-spacing: .35px;
}

.socials a {
    width: 36px;
    height: 36px;
    display: inline-grid;
    place-items: center;
    border-radius: 11px;
    background: #fff;
    color: var(--purple);
    box-shadow: 0 8px 20px rgba(67,32,111,.08);
    margin-right: 7px;
}

.footer-bottom {
    border-top: 1px solid #e8e3ee;
    margin-top: 44px;
    padding: 18px 0;
    color: #766f81;
    font-size: 13px;
}

.scroll-top {
    position: fixed;
    right: 24px;
    bottom: 24px;
    width: 48px;
    height: 48px;
    display: inline-grid;
    place-items: center;
    color: #fff;
    background: var(--purple);
    border-radius: 50%;
    box-shadow: 0 18px 35px rgba(67,32,111,.25);
    z-index: 50;
}

@media (max-width: 991.98px) {
    .navbar-collapse { padding: 18px 0; border-top: 1px solid var(--line); margin-top: 14px; }
    .nav-link.active::after { display: none; }
    .hero { padding: 54px 0 42px; }
    .google-hero-card { min-height: auto; margin-top: 34px; }
    .hero-points { grid-template-columns: 1fr; }
    .score-chips { grid-template-columns: 1fr; }
    .summary-copy, .rating-bars { padding: 32px; }
}

@media (max-width: 767.98px) {
    .hero h1 { letter-spacing: -1.3px; }
    .big-google-box { min-height: 245px; }
    .rating-large strong { font-size: 46px; }
    .google-logo { width: 96px; }
    .highlight-grid { grid-template-columns: 1fr; }
    .cta-band { padding: 28px; }
    .cta-icon { width: 58px; height: 58px; border-radius: 18px; font-size: 25px; }
    .mini-review { width: 270px; }
    .bar-row { grid-template-columns: 52px 1fr 34px; }
}



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