@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 {
    --ed-purple: #5b2382;
    --ed-purple-2: #4e2185;
    --ed-orange: #ff8a00;
    --ed-orange-dark: #f36f00;
    --ed-soft: #fff7ee;
    --ed-soft-purple: #f7f1ff;
    --ed-dark: #1d1530;
    --ed-muted: #6b6474;
    --ed-border: #eee5f7;
    --ed-green: #19b26b;
    --ed-shadow: 0 22px 60px rgba(50, 19, 95, .12);
    --ed-radius: 30px;

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

;
    --ed-purple-dark: #35124f;

    --ed-yellow: #ffc400;


}


* {
    box-sizing: border-box;
}

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

a {
    text-decoration: none;
}

img {
    max-width: 100%;
}

.text-purple {
    color: var(--ed-purple);
}

.text-orange {
    color: var(--ed-orange);
}

.bg-soft {
    background: linear-gradient(180deg, #fff7ee 0%, #fff 100%);
}

.section-pad {
    padding: 92px 0;
}

.btn-ed {
    border: 0;
    border-radius: 999px;
    background: linear-gradient(135deg, var(--ed-orange), var(--ed-orange-dark));
    color: #fff;
    font-weight: 900;
    padding: 13px 24px;
    box-shadow: 0 14px 30px rgba(255, 138, 0, .28);
    transition: .25s ease;
}

.btn-ed:hover {
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 18px 38px rgba(255, 138, 0, .35);
}

.btn-ed-outline {
    border: 1px solid rgba(50, 19, 95, .18);
    border-radius: 999px;
    background: #fff;
    color: var(--ed-purple);
    font-weight: 900;
    padding: 13px 24px;
    transition: .25s ease;
}

.btn-ed-outline:hover {
    background-color: #5b2382;
    color: #fff;
    transform: translateY(-2px);
}

.ed-navbar {
    position: sticky;
    top: 0;
    z-index: 999;
    background: rgba(255,255,255,.92);
    backdrop-filter: blur(18px);
    border-bottom: 1px solid rgba(238,229,247,.9);
}

.navbar-brand img {
    height: 38px;
}

.nav-link {
    color: #2c213b;
    font-weight: 800;
    font-size: .93rem;
}

.nav-link:hover {
    color: var(--ed-orange);
}

.hero {
    position: relative;
    overflow: hidden;
    padding: 92px 0 72px;
    background:
        radial-gradient(circle at 12% 10%, rgba(50, 19, 95, .15), transparent 25%),
        radial-gradient(circle at 82% 12%, rgba(255, 138, 0, .20), transparent 28%),
        linear-gradient(135deg, #fff 0%, #fff8ef 45%, #f7f0ff 100%);
}

.hero:before {
    content: "";
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(50,19,95,.045) 1px, transparent 1px),
        linear-gradient(90deg, rgba(50,19,95,.045) 1px, transparent 1px);
    background-size: 54px 54px;
    opacity: .72;
    mask-image: linear-gradient(180deg, #000 0%, transparent 90%);
}

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

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    padding: 9px 15px;
    border-radius: 999px;
    background: rgba(255,255,255,.85);
    border: 1px solid rgba(255,138,0,.25);
    color: var(--ed-purple);
    font-weight: 900;
    font-size: .86rem;
    box-shadow: 0 12px 28px rgba(50,19,95,.08);
}

.hero h1 {
    margin: 22px 0 18px;
    color: var(--ed-purple);
    font-weight: 950;
    letter-spacing: -.06em;
    line-height: .98;
    font-size: clamp(2.55rem, 5vw, 5.55rem);
}

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

.hero .lead {
    max-width: 680px;
    color: #51465f;
    line-height: 1.82;
    font-size: 1.12rem;
    margin-bottom: 0;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 13px;
    margin-top: 28px;
}

.hero-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
    margin-top: 32px;
    max-width: 690px;
}

.stat-card {
    padding: 18px;
    border-radius: 24px;
    background: rgba(255,255,255,.82);
    border: 1px solid var(--ed-border);
    box-shadow: 0 14px 34px rgba(50,19,95,.08);
}

.stat-card strong {
    display: block;
    color: var(--ed-purple);
    font-weight: 950;
    font-size: 1.55rem;
    line-height: 1;
}

.stat-card span {
    display: block;
    margin-top: 7px;
    color: var(--ed-muted);
    font-weight: 750;
    font-size: .88rem;
}

.hero-media {
    position: relative;
    min-height: 560px;
}

.hero-img-card {
    position: absolute;
    inset: 30px 0 auto auto;
    width: min(560px, 100%);
    border-radius: 42px;
    overflow: hidden;
    border: 8px solid rgba(255,255,255,.88);
    box-shadow: var(--ed-shadow);
    background: #fff;
}

.hero-img-card img {
    width: 100%;
    height: 455px;
    object-fit: cover;
    display: block;
}

.rating-card {
    position: absolute;
    left: 0;
    bottom: 42px;
    width: 300px;
    background: #fff;
    border: 1px solid var(--ed-border);
    border-radius: 28px;
    padding: 18px;
    box-shadow: 0 18px 42px rgba(50,19,95,.16);
}

.rating-card img {
    width: 210px;
    display: block;
    margin-bottom: 12px;
}

.rating-card p {
    margin: 0;
    color: var(--ed-muted);
    font-size: .9rem;
    line-height: 1.55;
    font-weight: 650;
}

.mini-card {
    position: absolute;
    right: 10px;
    bottom: 18px;
    background: var(--ed-purple);
    color: #fff;
    border-radius: 26px;
    padding: 18px;
    width: 230px;
    box-shadow: 0 18px 42px rgba(50,19,95,.18);
}

.mini-card i {
    width: 42px;
    height: 42px;
    border-radius: 16px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(255,138,0,.18);
    color: #ffc06a;
    margin-bottom: 12px;
}

.mini-card strong {
    display: block;
    font-weight: 950;
    line-height: 1.2;
}

.mini-card small {
    display: block;
    color: rgba(255,255,255,.72);
    margin-top: 6px;
    line-height: 1.45;
}

.section-title {
    max-width: 780px;
    margin: 0 auto 48px;
    text-align: center;
}

.section-title .mini {
    display: inline-block;
    color: var(--ed-orange);
    font-weight: 950;
    text-transform: uppercase;
    letter-spacing: .13em;
    font-size: .76rem;
    margin-bottom: 10px;
}

.section-title h2 {
    color: var(--ed-purple);
    font-size: clamp(2rem, 3vw, 3.1rem);
    font-weight: 950;
    letter-spacing: -.047em;
    line-height: 1.08;
    margin-bottom: 14px;
}

.section-title p {
    color: var(--ed-muted);
    line-height: 1.8;
    margin: 0;
}

.steps-wrap {
    margin-top: -44px;
    position: relative;
    z-index: 5;
}

.step-card {
    height: 100%;
    border-radius: 30px;
    border: 1px solid var(--ed-border);
    background: #fff;
    padding: 30px;
    box-shadow: 0 18px 44px rgba(50,19,95,.10);
    transition: .25s ease;
}

.step-card:hover {
    transform: translateY(-7px);
    box-shadow: 0 26px 62px rgba(50,19,95,.14);
}

.step-no {
    width: 54px;
    height: 54px;
    border-radius: 19px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--ed-orange), var(--ed-orange-dark));
    color: #fff;
    font-size: 1.28rem;
    font-weight: 950;
    box-shadow: 0 12px 28px rgba(255,138,0,.25);
    margin-bottom: 18px;
}

.step-card h3 {
    color: var(--ed-purple);
    font-size: 1.12rem;
    font-weight: 950;
    margin-bottom: 10px;
}

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

.review-strip {
    padding: 58px 0 20px;
}

.review-box {
    border-radius: 38px;
    border: 1px solid var(--ed-border);
    background:
        radial-gradient(circle at 10% 10%, rgba(255,138,0,.10), transparent 28%),
        #fff;
    box-shadow: var(--ed-shadow);
    padding: 32px;
}

.google-mark {
    max-width: 235px;
    width: 100%;
}

.review-card {
    height: 100%;
    border-radius: 26px;
    background: #fff;
    border: 1px solid var(--ed-border);
    padding: 22px;
    box-shadow: 0 12px 34px rgba(50,19,95,.07);
}

.review-head {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
}

.avatar {
    width: 46px;
    height: 46px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--ed-soft), var(--ed-soft-purple));
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--ed-purple);
    font-weight: 950;
}

.stars {
    color: #f5a623;
    font-size: .86rem;
}

.review-card p {
    margin: 0;
    color: #5f5669;
    line-height: 1.7;
    font-size: .95rem;
}

.split-section {
    padding: 72px 0 92px;
}

.split-box {
    border-radius: 44px;
    overflow: hidden;
    background: linear-gradient(135deg, var(--ed-purple), var(--ed-purple-2));
    box-shadow: var(--ed-shadow);
    color: #fff;
}

.split-content {
    padding: 56px;
}

.split-content .mini {
    color: #ffc06a;
    font-weight: 950;
    text-transform: uppercase;
    letter-spacing: .13em;
    font-size: .76rem;
}

.split-content h2 {
    margin: 12px 0 16px;
    font-weight: 950;
    letter-spacing: -.045em;
    font-size: clamp(2rem, 3vw, 3.15rem);
    line-height: 1.08;
}

.split-content p {
    color: rgba(255,255,255,.78);
    line-height: 1.85;
    margin-bottom: 22px;
}

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

.check-list li {
    display: flex;
    align-items: flex-start;
    gap: 13px;
    margin-bottom: 14px;
    color: rgba(255,255,255,.90);
    font-weight: 650;
}

.check-list i {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: rgba(255,138,0,.18);
    color: #ffc06a;
    display: flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 auto;
    margin-top: 1px;
}

.split-image {
    min-height: 560px;
    height: 100%;
    background:
        linear-gradient(180deg, rgba(50,19,95,.04), rgba(50,19,95,.35)),
        url("../img/genel/23.webp") center/cover;
}

.form-section {
    background:
        radial-gradient(circle at 12% 5%, rgba(255,138,0,.12), transparent 30%),
        linear-gradient(180deg, #fff 0%, #fff7ee 100%);
}

.contact-panel,
.form-card {
    height: 100%;
    border-radius: 40px;
    border: 1px solid var(--ed-border);
    background: #fff;
    padding: 34px;
    box-shadow: var(--ed-shadow);
}

.contact-panel h2,
.form-card h2 {
    color: var(--ed-purple);
    font-weight: 950;
    letter-spacing: -.04em;
    line-height: 1.1;
}

.contact-panel p {
    color: var(--ed-muted);
    line-height: 1.78;
}

.contact-item {
    display: flex;
    gap: 14px;
    align-items: flex-start;
    padding: 17px 0;
    border-bottom: 1px solid #f2eaf8;
}

.contact-item:last-child {
    border-bottom: 0;
}

.contact-item i {
    width: 48px;
    height: 48px;
    border-radius: 18px;
    background: #fff3e3;
    color: var(--ed-orange);
    display: flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 auto;
    font-size: 1.1rem;
}

.contact-item strong {
    display: block;
    color: var(--ed-purple);
    font-weight: 950;
}

.contact-item span {
    display: block;
    color: var(--ed-muted);
    font-size: .94rem;
    line-height: 1.5;
}

.form-control,
.form-select {
    min-height: 54px;
    border-radius: 16px;
    border: 1px solid #ded5e8;
    padding: 14px 16px;
    font-weight: 650;
}

.form-control:focus,
.form-select:focus {
    border-color: var(--ed-orange);
    box-shadow: 0 0 0 .25rem rgba(255,138,0,.13);
}

textarea.form-control {
    min-height: 132px;
}

.timeline-card {
    height: 100%;
    border-radius: 28px;
    border: 1px solid var(--ed-border);
    background: #fff;
    padding: 28px 26px 26px 92px;
    position: relative;
    box-shadow: 0 14px 38px rgba(50,19,95,.07);
}

.timeline-no {
    position: absolute;
    left: 26px;
    top: 28px;
    width: 48px;
    height: 48px;
    border-radius: 18px;
    background: linear-gradient(135deg, var(--ed-orange), var(--ed-orange-dark));
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 950;
    box-shadow: 0 12px 24px rgba(255,138,0,.22);
}

.timeline-card h3 {
    color: var(--ed-purple);
    font-size: 1.08rem;
    font-weight: 950;
    margin-bottom: 8px;
}

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

.clients-box {
    border-radius: 40px;
    background:
        radial-gradient(circle at 90% 10%, rgba(255,138,0,.12), transparent 28%),
        #fff;
    border: 1px solid var(--ed-border);
    box-shadow: var(--ed-shadow);
    padding: 34px;
}

.client-logo {
    height: 78px;
    border-radius: 22px;
    border: 1px solid var(--ed-border);
    background: linear-gradient(180deg, #fff, #fbf8ff);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--ed-purple);
    font-weight: 950;
    letter-spacing: -.02em;
}

.region-card {
    height: 100%;
    border-radius: 28px;
    background: #fff;
    border: 1px solid var(--ed-border);
    padding: 26px;
    box-shadow: 0 14px 36px rgba(50,19,95,.07);
}

.region-card h3 {
    color: var(--ed-purple);
    font-weight: 950;
    font-size: 1.15rem;
    margin-bottom: 16px;
}

.region-list {
    display: flex;
    flex-wrap: wrap;
    gap: 9px;
}

.region-list a {
    color: var(--ed-purple);
    background: #fbf8ff;
    border: 1px solid var(--ed-border);
    border-radius: 999px;
    padding: 8px 12px;
    font-weight: 800;
    font-size: .86rem;
    transition: .22s ease;
}

.region-list a:hover {
    background: var(--ed-orange);
    border-color: var(--ed-orange);
    color: #fff;
}

.final-review {
    border-radius: 42px;
    background:
        radial-gradient(circle at 82% 20%, rgba(255,138,0,.28), transparent 28%),
        linear-gradient(135deg, var(--ed-purple), var(--ed-purple-2));
    color: #fff;
    padding: 44px;
    box-shadow: var(--ed-shadow);
}

.final-review img {
    max-width: 260px;
    background: #fff;
    border-radius: 22px;
    padding: 16px;
}

.final-review h2 {
    font-weight: 950;
    letter-spacing: -.04em;
    margin-bottom: 12px;
}

.final-review p {
    color: rgba(255,255,255,.78);
    line-height: 1.8;
    margin-bottom: 0;
}


.whatsapp-float {
    position: fixed;
    right: 22px;
    bottom: 22px;
    z-index: 1000;
    width: 58px;
    height: 58px;
    border-radius: 50%;
    background: #25d366;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.55rem;
    box-shadow: 0 18px 34px rgba(37,211,102,.35);
    transition: .25s ease;
}

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

.alert-fixed {
    position: fixed;
    left: 50%;
    bottom: 26px;
    transform: translateX(-50%) translateY(130px);
    max-width: 560px;
    width: calc(100% - 34px);
    z-index: 1200;
    border-radius: 18px;
    transition: .35s ease;
    box-shadow: 0 18px 44px rgba(50,19,95,.18);
}

.alert-fixed.show {
    transform: translateX(-50%) translateY(0);
}

@media (max-width: 991.98px) {
    .section-pad {
        padding: 72px 0;
    }

    .hero {
        padding: 70px 0 58px;
    }

    .hero-stats {
        grid-template-columns: 1fr;
    }

    .hero-media {
        min-height: auto;
        margin-top: 36px;
    }

    .hero-img-card {
        position: relative;
        inset: auto;
        width: 100%;
    }

    .hero-img-card img {
        height: 390px;
    }

    .rating-card,
    .mini-card {
        position: relative;
        left: auto;
        right: auto;
        bottom: auto;
        width: 100%;
        margin-top: 14px;
    }

    .steps-wrap {
        margin-top: 0;
        padding-top: 24px;
    }

    .split-content {
        padding: 34px;
    }

    .split-image {
        min-height: 360px;
    }

    .timeline-card {
        padding: 86px 24px 24px;
    }

    .contact-panel,
    .form-card {
        border-radius: 30px;
        padding: 26px;
    }

    .final-review {
        padding: 32px;
    }
}

@media (max-width: 575.98px) {
    .hero-img-card img {
        height: 310px;
    }

    .client-logo {
        height: 64px;
    }
}



.brand-logo {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    color: var(--purple);
}

.brand-mark {
    width: 48px;
    height: 48px;
    border-radius: 17px;
    display: grid;
    place-items: center;
    background: linear-gradient(135deg, var(--orange), var(--orange-2));
    color: #fff;
    font-size: 24px;
    box-shadow: 0 16px 32px rgba(245, 130, 32, .25);
}

.brand-name {
    display: block;
    font-size: 27px;
    font-weight: 950;
    letter-spacing: -.9px;
    line-height: .9;
}

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

.brand-tagline {
    display: block;
    color: var(--muted);
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 2.4px;
    margin-top: 5px;
    font-weight: 800;
}

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



.stats-band {
    padding: 42px 0;
    background: linear-gradient(135deg, var(--ed-purple), #40145d);
    position: relative;
    overflow: hidden
}

.stats-band:before {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 15% 10%, rgba(255, 138, 0, .22), transparent 35%), radial-gradient(circle at 88% 50%, rgba(255, 255, 255, .10), transparent 30%)
}

.stats-band .container {
    position: relative;
    z-index: 2
}
