:root {
    --ink: #10212a;
    --muted: #5d6d73;
    --line: rgba(16, 33, 42, 0.12);
    --teal: #0f8b8d;
    --teal-dark: #086a6c;
    --mint: #dff7ef;
    --sun: #ffd166;
    --coral: #f28482;
    --white: #ffffff;
    --soft: #f7fbf8;
    --shadow: 0 24px 70px rgba(16, 33, 42, 0.16);
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: "Manrope", Arial, sans-serif;
    color: var(--ink);
    background: var(--soft);
    line-height: 1.6;
}

a {
    color: inherit;
    text-decoration: none;
}

.site-header {
    position: fixed;
    top: 16px;
    left: 50%;
    z-index: 20;
    display: flex;
    width: min(1160px, calc(100% - 28px));
    min-height: 72px;
    transform: translateX(-50%);
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    padding: 12px 14px;
    border: 1px solid rgba(255, 255, 255, 0.62);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.86);
    box-shadow: 0 14px 40px rgba(16, 33, 42, 0.12);
    backdrop-filter: blur(18px);
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    min-width: 180px;
}

.brand-mark {
    display: grid;
    width: 44px;
    height: 44px;
    place-items: center;
    border-radius: 8px;
    background: var(--teal);
    color: var(--white);
    font-size: 24px;
    font-weight: 800;
}

.brand strong,
.brand small {
    display: block;
    line-height: 1.15;
}

.brand small {
    color: var(--muted);
    font-size: 12px;
}

.main-nav {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 6px;
}

.mobile-header-actions,
.mobile-whatsapp,
.menu-toggle {
    display: none;
}

.main-nav a,
.header-call {
    border-radius: 8px;
    padding: 10px 12px;
    color: #243840;
    font-size: 13px;
    font-weight: 700;
}

.main-nav a:hover {
    background: var(--mint);
}

.header-call {
    background: var(--ink);
    color: var(--white);
    white-space: nowrap;
}

.hero {
    position: relative;
    min-height: 760px;
    overflow: hidden;
    padding: 170px max(22px, calc((100vw - 1160px) / 2)) 86px;
    background: #d9f3ec;
}

.hero-media,
.hero-overlay {
    position: absolute;
    inset: 0;
}

.hero-media {
    background-position: center;
    background-size: cover;
    transform: scale(1.02);
}

.hero-overlay {
    background:
        linear-gradient(90deg, rgba(247, 251, 248, 0.98) 0%, rgba(247, 251, 248, 0.82) 38%, rgba(247, 251, 248, 0.18) 72%),
        linear-gradient(180deg, rgba(16, 33, 42, 0.12), rgba(16, 33, 42, 0));
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 680px;
}

.eyebrow {
    margin: 0 0 14px;
    color: var(--teal-dark);
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 0;
    text-transform: uppercase;
}

h1,
h2,
h3,
p {
    margin-top: 0;
}

h1 {
    max-width: 760px;
    margin-bottom: 22px;
    font-size: clamp(44px, 7vw, 86px);
    line-height: 0.98;
    letter-spacing: 0;
}

h2 {
    font-size: clamp(30px, 4vw, 52px);
    line-height: 1.05;
    letter-spacing: 0;
}

h3 {
    font-size: 20px;
    line-height: 1.2;
}

.hero-text {
    max-width: 620px;
    color: #31464d;
    font-size: 19px;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 32px;
}

.btn {
    display: inline-flex;
    min-height: 52px;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    padding: 0 20px;
    font-weight: 800;
}

.btn-primary {
    background: var(--teal);
    color: var(--white);
    box-shadow: 0 12px 30px rgba(15, 139, 141, 0.28);
}

.btn-ghost {
    border: 1px solid var(--line);
    background: rgba(255, 255, 255, 0.82);
}

.hero-card {
    position: absolute;
    right: max(22px, calc((100vw - 1160px) / 2));
    bottom: 58px;
    z-index: 2;
    width: min(360px, calc(100% - 44px));
    padding: 24px;
    border: 1px solid rgba(255, 255, 255, 0.68);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.9);
    box-shadow: var(--shadow);
    backdrop-filter: blur(16px);
}

.hero-card .spark {
    display: inline-grid;
    width: 36px;
    height: 36px;
    margin-bottom: 12px;
    place-items: center;
    border-radius: 8px;
    background: var(--sun);
}

.hero-card strong {
    display: block;
    margin-bottom: 8px;
    font-size: 19px;
}

.hero-card p {
    margin-bottom: 0;
    color: var(--muted);
}

.quick-stats {
    position: relative;
    z-index: 4;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1px;
    width: min(1160px, calc(100% - 44px));
    margin: 34px auto 0;
    overflow: hidden;
    border-radius: 8px;
    background: var(--line);
    box-shadow: 0 16px 42px rgba(16, 33, 42, 0.1);
}

.quick-stats article {
    min-height: 132px;
    padding: 28px;
    background: var(--white);
}

.quick-stats strong {
    display: block;
    color: var(--teal);
    font-size: 38px;
    line-height: 1;
}

.quick-stats span {
    color: var(--muted);
    font-weight: 700;
}

.intro,
.category-section,
.process,
.faq,
.cta {
    width: min(1160px, calc(100% - 44px));
    margin: 0 auto;
}

.intro {
    display: grid;
    grid-template-columns: 0.9fr 1fr;
    gap: 56px;
    padding: 96px 0 56px;
    align-items: end;
}

.intro p:last-child {
    color: var(--muted);
    font-size: 18px;
}

.services-shell {
    padding: 20px 0 70px;
}

.category-section {
    display: grid;
    width: 100%;
    grid-template-columns: 0.88fr 1.12fr;
    gap: 42px;
    align-items: start;
    margin: 0;
    padding: 86px max(22px, calc((100vw - 1160px) / 2));
    border-top: 1px solid rgba(16, 33, 42, 0.08);
}

.category-section.reverse {
    grid-template-columns: 1.12fr 0.88fr;
}

.category-section.reverse .category-copy {
    order: 2;
}

.theme-apartman {
    background:
        linear-gradient(90deg, rgba(223, 247, 239, 0.88), rgba(255, 255, 255, 0.84)),
        repeating-linear-gradient(135deg, rgba(15, 139, 141, 0.08) 0 2px, transparent 2px 20px);
}

.theme-detayli {
    background:
        linear-gradient(90deg, rgba(255, 247, 222, 0.92), rgba(255, 255, 255, 0.9)),
        repeating-linear-gradient(0deg, rgba(255, 209, 102, 0.18) 0 1px, transparent 1px 18px);
}

.theme-yonetim {
    background:
        linear-gradient(90deg, rgba(239, 246, 255, 0.94), rgba(255, 255, 255, 0.9)),
        repeating-linear-gradient(90deg, rgba(16, 33, 42, 0.06) 0 1px, transparent 1px 22px);
}

.category-copy {
    position: relative;
}

.category-copy::before {
    content: "";
    display: inline-block;
    width: 74px;
    height: 74px;
    margin-bottom: 22px;
    border-radius: 8px;
    background: var(--teal);
    box-shadow: 0 18px 34px rgba(15, 139, 141, 0.22);
}

.category-copy::after {
    content: "";
    position: absolute;
}

.theme-apartman .category-copy::before {
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.3), transparent),
        var(--teal);
}

.theme-apartman .category-copy::after {
    top: 22px;
    left: 21px;
    width: 32px;
    height: 26px;
    border: 3px solid var(--white);
    border-radius: 4px;
    background:
        linear-gradient(90deg, transparent 42%, var(--white) 42% 58%, transparent 58%),
        linear-gradient(0deg, transparent 42%, var(--white) 42% 58%, transparent 58%);
}

.theme-detayli .category-copy::before {
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.32), transparent),
        #f2a541;
    box-shadow: 0 18px 34px rgba(242, 165, 65, 0.26);
}

.theme-detayli .category-copy::after {
    top: 20px;
    left: 35px;
    width: 5px;
    height: 34px;
    border-radius: 6px;
    background: var(--white);
    box-shadow: -14px 14px 0 -1px var(--white), 14px 14px 0 -1px var(--white);
}

.theme-yonetim .category-copy::before {
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.28), transparent),
        #2f5d7c;
    box-shadow: 0 18px 34px rgba(47, 93, 124, 0.22);
}

.theme-yonetim .category-copy::after {
    top: 23px;
    left: 23px;
    width: 28px;
    height: 16px;
    border-bottom: 5px solid var(--white);
    border-left: 5px solid var(--white);
    transform: rotate(-45deg);
}

.category-copy p {
    color: var(--muted);
    font-size: 17px;
}

.category-note {
    margin-top: 24px;
    padding: 18px;
    border-left: 5px solid var(--teal);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.72);
    color: #1e4d51;
    font-weight: 800;
}

.theme-detayli .category-note {
    border-left-color: #f2a541;
    color: #6b4211;
}

.theme-yonetim .category-note {
    border-left-color: #2f5d7c;
    color: #223f55;
}

.service-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
}

.service-card {
    min-height: 220px;
    padding: 24px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.86);
    box-shadow: 0 12px 34px rgba(16, 33, 42, 0.07);
    backdrop-filter: blur(10px);
}

.service-icon {
    display: block;
    width: 42px;
    height: 42px;
    margin-bottom: 18px;
    border-radius: 8px;
    background:
        radial-gradient(circle at 65% 30%, #fff 0 13%, transparent 14%),
        linear-gradient(135deg, var(--teal), #7bdcb5);
}

.theme-apartman .service-card:nth-child(1) .service-icon {
    background:
        linear-gradient(90deg, transparent 42%, #fff 42% 58%, transparent 58%),
        linear-gradient(0deg, transparent 42%, #fff 42% 58%, transparent 58%),
        linear-gradient(135deg, var(--teal), #7bdcb5);
}

.theme-apartman .service-card:nth-child(2) .service-icon {
    background:
        linear-gradient(180deg, #fff 0 12%, transparent 12%),
        linear-gradient(135deg, #0f8b8d, #37c19f);
}

.theme-apartman .service-card:nth-child(3) .service-icon {
    background:
        repeating-linear-gradient(180deg, #fff 0 3px, transparent 3px 9px),
        linear-gradient(135deg, #0f8b8d, #7bdcb5);
}

.theme-detayli .service-icon {
    background:
        radial-gradient(circle at 50% 50%, #fff 0 18%, transparent 19%),
        linear-gradient(135deg, #f2a541, #ffd166);
}

.theme-yonetim .service-icon {
    background:
        linear-gradient(135deg, transparent 50%, rgba(255, 255, 255, 0.72) 50% 62%, transparent 62%),
        linear-gradient(135deg, #2f5d7c, #8eb9d0);
}

.service-card p,
.process-grid p,
.faq p {
    color: var(--muted);
}

.process,
.faq {
    padding: 78px 0;
    border-top: 1px solid var(--line);
}

.section-heading {
    max-width: 720px;
    margin-bottom: 30px;
}

.process-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}

.process-grid article {
    min-height: 190px;
    padding: 26px;
    border-radius: 8px;
    background: var(--mint);
}

.faq-list {
    display: grid;
    gap: 12px;
}

details {
    border: 1px solid var(--line);
    border-radius: 8px;
    background: var(--white);
}

summary {
    cursor: pointer;
    padding: 20px 22px;
    font-weight: 800;
}

details p {
    padding: 0 22px 20px;
}

.cta {
    display: grid;
    grid-template-columns: 1fr 420px;
    gap: 32px;
    align-items: center;
    margin-bottom: 70px;
    padding: 44px;
    border-radius: 8px;
    background: var(--ink);
    color: var(--white);
}

.cta .eyebrow,
.cta p {
    color: #bceee0;
}

.contact-panel {
    display: grid;
    gap: 12px;
}

.contact-panel a {
    padding: 16px;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.1);
    font-weight: 800;
}

.contact-panel a:first-child {
    background: var(--sun);
    color: var(--ink);
}

.site-footer {
    position: relative;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 14px;
    min-height: 92px;
    padding: 30px 220px 30px 20px;
    color: var(--muted);
    background: var(--white);
}

.footer-main {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 14px;
}

.site-footer strong {
    color: var(--ink);
}

.digital-credit {
    position: absolute;
    right: 22px;
    bottom: 18px;
    color: #465a61;
    font-size: 13px;
    font-weight: 700;
}

.digital-credit:hover,
.footer-main a:hover {
    color: var(--teal-dark);
}

.floating-whatsapp {
    position: fixed;
    right: 18px;
    bottom: 18px;
    z-index: 30;
    display: inline-flex;
    min-height: 52px;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    padding: 0 18px;
    background: #1fb56c;
    color: var(--white);
    font-weight: 900;
    box-shadow: 0 14px 34px rgba(31, 181, 108, 0.35);
}

@media (max-width: 900px) {
    .site-header {
        position: sticky;
        top: 0;
        left: auto;
        display: grid;
        width: 100%;
        min-height: 66px;
        grid-template-columns: 1fr auto;
        gap: 10px 12px;
        margin: 0;
        padding: 10px 14px;
        transform: none;
        align-items: center;
        border-width: 0 0 1px;
        border-radius: 0 0 8px 8px;
        background: rgba(255, 255, 255, 0.94);
    }

    .brand {
        min-width: 0;
    }

    .brand-mark {
        width: 42px;
        height: 42px;
        font-size: 22px;
    }

    .brand strong {
        font-size: 16px;
    }

    .mobile-header-actions {
        display: flex;
        align-items: center;
        gap: 8px;
    }

    .mobile-whatsapp,
    .menu-toggle {
        display: inline-grid;
        width: 44px;
        height: 44px;
        place-items: center;
        border: 0;
        border-radius: 8px;
        cursor: pointer;
    }

    .mobile-whatsapp {
        background: #1fb56c;
        color: var(--white);
        box-shadow: 0 10px 24px rgba(31, 181, 108, 0.26);
    }

    .mobile-whatsapp svg {
        width: 22px;
        height: 22px;
        fill: currentColor;
    }

    .menu-toggle {
        background: var(--ink);
        align-content: center;
        justify-items: center;
        gap: 5px;
    }

    .menu-toggle span {
        display: block;
        width: 19px;
        height: 2px;
        border-radius: 99px;
        background: var(--white);
        transition: transform 0.2s ease, opacity 0.2s ease;
    }

    .site-header.is-open .menu-toggle span:nth-child(1) {
        transform: translateY(7px) rotate(45deg);
    }

    .site-header.is-open .menu-toggle span:nth-child(2) {
        opacity: 0;
    }

    .site-header.is-open .menu-toggle span:nth-child(3) {
        transform: translateY(-7px) rotate(-45deg);
    }

    .main-nav {
        display: grid;
        grid-column: 1 / -1;
        width: 100%;
        max-height: 0;
        overflow: hidden;
        justify-content: stretch;
        gap: 6px;
        padding: 0;
        opacity: 0;
        transition: max-height 0.25s ease, opacity 0.2s ease, padding 0.2s ease;
    }

    .site-header.is-open .main-nav {
        max-height: 330px;
        padding: 8px 0 4px;
        opacity: 1;
    }

    .main-nav a {
        width: 100%;
        padding: 12px;
        background: rgba(223, 247, 239, 0.55);
    }

    .header-call {
        display: none;
    }

    .hero {
        min-height: auto;
        padding-top: 52px;
        padding-bottom: 54px;
    }

    .hero-overlay {
        background: linear-gradient(180deg, rgba(247, 251, 248, 0.98) 0%, rgba(247, 251, 248, 0.83) 55%, rgba(247, 251, 248, 0.22) 100%);
    }

    .hero-card {
        position: relative;
        right: auto;
        bottom: auto;
        width: 100%;
        max-width: none;
        margin: 36px auto 0;
    }

    .quick-stats {
        margin-top: 16px;
    }

    .quick-stats,
    .intro,
    .process-grid,
    .cta {
        grid-template-columns: 1fr;
    }

    .category-section,
    .category-section.reverse {
        grid-template-columns: 1fr;
        padding-block: 64px;
    }

    .category-section.reverse .category-copy {
        order: 0;
    }

    .service-grid {
        grid-template-columns: 1fr;
    }

    .site-footer {
        align-items: flex-start;
        flex-direction: column;
        padding: 26px 18px 82px;
    }

    .footer-main {
        justify-content: flex-start;
    }

    .digital-credit {
        right: auto;
        left: 18px;
        bottom: 22px;
    }

    .floating-whatsapp {
        display: none !important;
    }
}

@media (max-width: 560px) {
    .site-header {
        padding-inline: 12px;
    }

    .brand small {
        font-size: 11px;
    }

    .brand strong {
        font-size: 15px;
    }

    .mobile-whatsapp,
    .menu-toggle {
        width: 42px;
        height: 42px;
    }

    .hero {
        min-height: auto;
        padding-inline: 18px;
    }

    .quick-stats,
    .intro,
    .process,
    .faq,
    .cta {
        width: calc(100% - 28px);
    }

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

    .cta {
        padding: 28px;
    }

    .btn,
    .hero-actions {
        width: 100%;
    }
}
