@import url("./variables.css");
@import url("./base.css");
@import url("./layout.css");
@import url("./buttons.css");
@import url("./navbar.css");
@import url("./service-page.css");
@import url("./hero.css");
@import url("./services.css");
@import url("./process.css");
@import url("./reviews.css");

@import url("./responsive.css");

/* =========================================================
   PREMIUM HEADER
========================================================= */

:root {
    --site-navy: #071a35;
    --site-blue: #2563eb;
    --site-sky: #0ea5e9;
    --site-red: #ef3340;
    --site-text: #172033;
    --site-muted: #64748b;
    --site-border: #e6ebf3;
}

body {
    font-family: "Manrope", sans-serif;
}


/* Üst bilgi bandı */

.site-topbar {
    position: relative;
    z-index: 1040;
    color: #c8d7ec;
    background:
        linear-gradient(
            90deg,
            #06142c,
            #09234b
        );
    font-size: 11px;
    font-weight: 600;
}

.site-topbar__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 38px;
}

.site-topbar__left,
.site-topbar__right {
    display: flex;
    align-items: center;
    gap: 22px;
}

.site-topbar a,
.site-topbar span {
    display: inline-flex;
    align-items: center;
    gap: 7px;
}

.site-topbar a {
    color: #c8d7ec;
    text-decoration: none;
    transition: color 0.2s ease;
}

.site-topbar a:hover {
    color: #ffffff;
}

.site-topbar i {
    color: #7dd3fc;
    font-size: 12px;
}

.site-topbar__whatsapp {
    min-height: 27px;
    padding: 0 11px;
    border: 1px solid rgba(74, 222, 128, 0.18);
    border-radius: 999px;
    color: #bbf7d0 !important;
    background: rgba(34, 197, 94, 0.10);
}

.site-topbar__whatsapp i {
    color: #4ade80;
}


/* Ana header */

.site-header {
    position: sticky;
    top: 0;
    z-index: 1030;
    border-bottom: 1px solid rgba(226, 232, 240, 0.88);
    background: rgba(255, 255, 255, 0.94);
    box-shadow: 0 12px 35px rgba(15, 23, 42, 0.045);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
}

.site-navbar {
    min-height: 86px;
    padding: 0;
}


/* Logo */

.site-brand {
    display: inline-flex;
    align-items: center;
    gap: 11px;
    flex: 0 0 auto;
    color: var(--site-text);
    text-decoration: none;
}

.site-brand:hover {
    color: var(--site-text);
}

.site-brand__logo {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 58px;
    height: 58px;
    overflow: hidden;
    border: 1px solid rgba(37, 99, 235, 0.10);
    border-radius: 17px;
    background:
        linear-gradient(
            145deg,
            #f8fbff,
            #ffffff
        );
    box-shadow:
        0 10px 26px rgba(37, 99, 235, 0.10),
        inset 0 1px 0 #ffffff;
}

.site-brand__logo img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.site-brand__text {
    display: flex;
    flex-direction: column;
    line-height: 1.15;
}

.site-brand__text strong {
    color: #0f1d33;
    font-size: 17px;
    font-weight: 800;
    letter-spacing: -0.035em;
}

.site-brand__text small {
    margin-top: 5px;
    color: #7a889c;
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 0.055em;
    text-transform: uppercase;
}


/* Masaüstü menü */

.site-navbar__desktop {
    justify-content: flex-end;
    margin-left: 26px;
}

.site-navbar__menu {
    align-items: center;
    gap: 1px;
}

.site-navbar__menu .nav-link {
    position: relative;
    padding: 31px 8px !important;
    color: #36435a;
    font-size: 11.3px;
    font-weight: 750;
    letter-spacing: -0.015em;
    white-space: nowrap;
    transition:
        color 0.2s ease,
        background-color 0.2s ease;
}

.site-navbar__menu .nav-link:hover,
.site-navbar__menu .nav-link.show {
    color: var(--site-blue);
}

.site-navbar__menu .nav-link::before {
    content: "";
    position: absolute;
    right: 9px;
    bottom: 21px;
    left: 9px;
    height: 2px;
    border-radius: 999px;
    background:
        linear-gradient(
            90deg,
            var(--site-blue),
            var(--site-sky)
        );
    opacity: 0;
    transform: scaleX(0.4);
    transition:
        opacity 0.22s ease,
        transform 0.22s ease;
}

.site-navbar__menu .nav-link:hover::before,
.site-navbar__menu .nav-link.show::before {
    opacity: 1;
    transform: scaleX(1);
}

.site-navbar__menu .dropdown-toggle::after {
    margin-left: 5px;
    vertical-align: 2px;
    border-top-width: 4px;
    border-right-width: 4px;
    border-left-width: 4px;
}

.site-navbar__greece {
    color: #174a9c !important;
}

.site-navbar__flag {
    margin-right: 3px;
    font-size: 14px;
}


/* Sağ CTA */

.site-header__cta {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    min-height: 52px;
    margin-left: 14px;
    padding: 0 16px;
    border-radius: 15px;
    color: #ffffff;
    background:
        linear-gradient(
            135deg,
            #20c763,
            #25d366
        );
    box-shadow: 0 14px 28px rgba(37, 211, 102, 0.19);
    text-decoration: none;
    transition:
        transform 0.25s ease,
        box-shadow 0.25s ease,
        background-color 0.25s ease;
}

.site-header__cta:hover {
    color: #ffffff;
    box-shadow: 0 18px 35px rgba(37, 211, 102, 0.28);
    transform: translateY(-2px);
}

.site-header__cta > i {
    font-size: 20px;
}

.site-header__cta span {
    display: flex;
    flex-direction: column;
    font-size: 10.5px;
    font-weight: 800;
    line-height: 1.15;
    white-space: nowrap;
}

.site-header__cta small {
    margin-bottom: 3px;
    font-size: 8px;
    font-weight: 700;
    opacity: 0.82;
}


/* Normal dropdown */

.site-dropdown {
    min-width: 320px;
    margin-top: 0 !important;
    padding: 12px;
    border: 1px solid var(--site-border);
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.98);
    box-shadow:
        0 28px 75px rgba(15, 23, 42, 0.15),
        inset 0 1px 0 #ffffff;
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
}

.site-dropdown .dropdown-item {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 3px;
    padding: 11px;
    border-radius: 13px;
    color: var(--site-text);
    white-space: normal;
    transition:
        color 0.2s ease,
        background-color 0.2s ease,
        transform 0.2s ease;
}

.site-dropdown .dropdown-item:hover {
    color: var(--site-blue);
    background: #f2f7ff;
    transform: translateX(2px);
}

.site-dropdown__icon,
.site-dropdown__flag {
    flex: 0 0 auto;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 39px;
    height: 39px;
    border: 1px solid rgba(37, 99, 235, 0.09);
    border-radius: 12px;
    color: var(--site-blue);
    background: #f4f8ff;
    font-size: 16px;
}

.site-dropdown__flag {
    font-size: 20px;
}

.site-dropdown .dropdown-item > span:last-child {
    display: flex;
    flex-direction: column;
}

.site-dropdown strong {
    font-size: 11.5px;
    font-weight: 800;
}

.site-dropdown small {
    margin-top: 3px;
    color: #8793a5;
    font-size: 9px;
}


/* Mega menüler */

.site-menu-mega {
    position: static;
}

.site-mega-menu {
    right: 12px;
    left: auto;
    width: min(760px, calc(100vw - 30px));
    margin-top: 0 !important;
    padding: 20px;
    border: 1px solid var(--site-border);
    border-radius: 24px;
    background:
        radial-gradient(
            circle at 100% 0,
            rgba(37, 99, 235, 0.07),
            transparent 28%
        ),
        rgba(255, 255, 255, 0.985);
    box-shadow:
        0 35px 90px rgba(15, 23, 42, 0.17),
        inset 0 1px 0 #ffffff;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
}

.site-mega-menu--greece {
    width: min(820px, calc(100vw - 30px));
}

.site-mega-menu__header {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 25px;
    margin-bottom: 15px;
    padding: 2px 4px 16px;
    border-bottom: 1px solid #e8edf5;
}

.site-mega-menu__header > div {
    display: flex;
    flex-direction: column;
}

.site-mega-menu__eyebrow {
    margin-bottom: 5px;
    color: var(--site-blue);
    font-size: 8px;
    font-weight: 800;
    letter-spacing: 0.09em;
    text-transform: uppercase;
}

.site-mega-menu__header strong {
    color: #132039;
    font-size: 14px;
    font-weight: 800;
    letter-spacing: -0.02em;
}

.site-mega-menu__header > a {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: var(--site-blue);
    font-size: 9.5px;
    font-weight: 800;
    text-decoration: none;
    white-space: nowrap;
}

.site-mega-link {
    display: flex;
    align-items: center;
    gap: 11px;
    min-height: 64px;
    padding: 10px 12px;
    border: 1px solid transparent;
    border-radius: 15px;
    color: var(--site-text);
    text-decoration: none;
    transition:
        border-color 0.2s ease,
        background-color 0.2s ease,
        transform 0.2s ease,
        box-shadow 0.2s ease;
}

.site-mega-link:hover {
    color: var(--site-blue);
    border-color: rgba(37, 99, 235, 0.10);
    background: #f5f9ff;
    box-shadow: 0 10px 24px rgba(37, 99, 235, 0.06);
    transform: translateY(-1px);
}

.site-mega-link > i {
    flex: 0 0 auto;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 39px;
    height: 39px;
    border-radius: 12px;
    color: var(--site-blue);
    background:
        linear-gradient(
            145deg,
            #eef5ff,
            #f8fbff
        );
    font-size: 16px;
}

.site-mega-link > span {
    display: flex;
    flex-direction: column;
}

.site-mega-link strong {
    color: #19263b;
    font-size: 10.8px;
    font-weight: 800;
}

.site-mega-link small {
    margin-top: 3px;
    color: #8793a5;
    font-size: 8.5px;
}

.site-mega-menu__notice {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 13px;
    padding: 12px 14px;
    border: 1px solid rgba(37, 99, 235, 0.09);
    border-radius: 14px;
    color: #66768d;
    background:
        linear-gradient(
            90deg,
            #f2f7ff,
            #f8fbff
        );
    font-size: 9px;
    line-height: 1.55;
}

.site-mega-menu__notice > i {
    flex: 0 0 auto;
    color: var(--site-blue);
    font-size: 15px;
}

.site-mega-menu__notice > span {
    flex: 1;
}

.site-mega-menu__notice > a {
    flex: 0 0 auto;
    color: var(--site-blue);
    font-weight: 800;
    text-decoration: none;
}


/* Mobil menü butonu */

.site-navbar__toggler {
    display: none;
    width: 46px;
    height: 46px;
    padding: 10px;
    border: 1px solid #e3e9f2;
    border-radius: 14px;
    background: #f8fafc;
    box-shadow: none !important;
}

.site-navbar__toggler span {
    display: block;
    width: 21px;
    height: 2px;
    margin: 4px auto;
    border-radius: 999px;
    background: #1d2b40;
}


/* Mobil offcanvas */

.mobile-navigation {
    width: min(410px, 92vw) !important;
    border-left: 0;
    background:
        radial-gradient(
            circle at 100% 0,
            rgba(37, 99, 235, 0.09),
            transparent 27%
        ),
        #ffffff;
}

.mobile-navigation .offcanvas-header {
    padding: 19px 20px;
    border-bottom: 1px solid #e7ecf4;
}

.site-brand--mobile .site-brand__logo {
    width: 52px;
    height: 52px;
}

.mobile-navigation__close {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 41px;
    height: 41px;
    border: 1px solid #e5eaf2;
    border-radius: 13px;
    color: #27364d;
    background: #f8fafc;
}

.mobile-navigation .offcanvas-body {
    padding: 17px 18px 25px;
}

.mobile-menu__single {
    display: flex;
    align-items: center;
    gap: 12px;
    min-height: 55px;
    margin-bottom: 8px;
    padding: 0 15px;
    border: 1px solid #e7ecf4;
    border-radius: 15px;
    color: #1e2c41;
    background: #ffffff;
    font-size: 12px;
    font-weight: 800;
    text-decoration: none;
}

.mobile-menu__single i {
    color: var(--site-blue);
    font-size: 16px;
}

.mobile-menu .accordion-item {
    margin-bottom: 8px;
    overflow: hidden;
    border: 1px solid #e7ecf4;
    border-radius: 15px;
}

.mobile-menu .accordion-button {
    gap: 11px;
    min-height: 55px;
    padding: 13px 15px;
    color: #1e2c41;
    background: #ffffff;
    box-shadow: none;
    font-size: 12px;
    font-weight: 800;
}

.mobile-menu .accordion-button:not(.collapsed) {
    color: var(--site-blue);
    background: #f5f9ff;
}

.mobile-menu .accordion-button::after {
    width: 15px;
    height: 15px;
    background-size: 15px;
}

.mobile-menu .accordion-body {
    display: flex;
    flex-direction: column;
    gap: 3px;
    padding: 7px 12px 12px 45px;
    background: #fbfcfe;
}

.mobile-menu .accordion-body a {
    padding: 9px 8px;
    border-radius: 9px;
    color: #66758a;
    font-size: 10.5px;
    font-weight: 700;
    text-decoration: none;
}

.mobile-menu .accordion-body a:hover {
    color: var(--site-blue);
    background: #eef5ff;
}

.mobile-navigation__contact {
    margin-top: 18px;
    padding: 18px;
    border-radius: 19px;
    color: #ffffff;
    background:
        radial-gradient(
            circle at 100% 0,
            rgba(56, 189, 248, 0.22),
            transparent 32%
        ),
        linear-gradient(
            135deg,
            #071a35,
            #0a2a58
        );
}

.mobile-navigation__contact > span {
    display: block;
    margin-bottom: 12px;
    color: #b9cae0;
    font-size: 10px;
    font-weight: 700;
}

.mobile-navigation__contact > a {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    min-height: 48px;
    border-radius: 13px;
    color: #ffffff;
    background: #25d366;
    font-size: 10.5px;
    font-weight: 800;
    text-decoration: none;
}

.mobile-navigation__contact > div {
    display: flex;
    gap: 8px;
    margin-top: 10px;
}

.mobile-navigation__contact > div a {
    display: flex;
    flex: 1;
    align-items: center;
    justify-content: center;
    gap: 6px;
    min-height: 38px;
    border: 1px solid rgba(255, 255, 255, 0.11);
    border-radius: 11px;
    color: #c9d8ec;
    background: rgba(255, 255, 255, 0.06);
    font-size: 8.5px;
    font-weight: 700;
    text-decoration: none;
}


/* Masaüstünde hover ile menü açılması */

@media (min-width: 1200px) {

    .site-navbar .dropdown:hover > .dropdown-menu {
        display: block;
    }

    .site-navbar .dropdown-menu {
        animation: siteMenuReveal 0.22s ease both;
    }

}

@keyframes siteMenuReveal {

    from {
        opacity: 0;
        transform: translateY(8px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }

}


/* Küçük masaüstü ve tablet */

@media (max-width: 1399.98px) {

    .site-brand__text strong {
        font-size: 15px;
    }

    .site-navbar__menu .nav-link {
        padding-right: 6px !important;
        padding-left: 6px !important;
        font-size: 10.3px;
    }

    .site-header__cta {
        margin-left: 8px;
        padding-right: 12px;
        padding-left: 12px;
    }

    .site-header__cta span {
        font-size: 9.5px;
    }

}


/* Mobil menüye geçiş */

@media (max-width: 1199.98px) {

    .site-topbar {
        display: none;
    }

    .site-navbar {
        min-height: 76px;
    }

    .site-navbar__desktop {
        display: none !important;
    }

    .site-navbar__toggler {
        display: block;
    }

    .site-brand__logo {
        width: 52px;
        height: 52px;
        border-radius: 15px;
    }

}


/* Telefon */

@media (max-width: 575.98px) {
/* Mobilde ikincil Yunanistan bağlantılarını gizle */

.footer-greece-extra {
    display: none !important;
}
    .site-navbar {
        min-height: 70px;
    }

    .site-brand {
        gap: 9px;
    }

    .site-brand__logo {
        width: 47px;
        height: 47px;
    }

    .site-brand__text strong {
        font-size: 14px;
    }

    .site-brand__text small {
        margin-top: 4px;
        font-size: 7.5px;
    }

    .site-navbar__toggler {
        width: 43px;
        height: 43px;
    }

}
.footer-service-extra{
    display:none;
}

/* =========================================================
   PREMIUM FOOTER
========================================================= */

.site-footer {
    position: relative;
    overflow: hidden;
    color: #aebfd7;
    background: #06152f;
}

.site-footer__glow {
    position: absolute;
    border-radius: 50%;
    filter: blur(120px);
    pointer-events: none;
}

.site-footer__glow--one {
    top: 70px;
    left: -240px;
    width: 480px;
    height: 480px;
    opacity: 0.14;
    background: #2563eb;
}

.site-footer__glow--two {
    right: -230px;
    bottom: 20px;
    width: 460px;
    height: 460px;
    opacity: 0.12;
    background: #0ea5e9;
}


/* Üst iletişim şeridi */

.site-footer__contact-strip {
    position: relative;
    z-index: 3;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
    
    padding: 28px 32px;
    border: 1px solid rgba(191, 219, 254, 0.17);
    border-radius: 25px;
    background:
        radial-gradient(
            circle at 5% 0,
            rgba(59, 130, 246, 0.28),
            transparent 38%
        ),
        linear-gradient(
            135deg,
            #0a2855,
            #0d3670
        );
    box-shadow:
        0 28px 65px rgba(0, 0, 0, 0.24),
        inset 0 1px 0 rgba(255, 255, 255, 0.08);
    
}

.site-footer__contact-intro {
    display: flex;
    align-items: center;
    gap: 16px;
}

.site-footer__contact-icon {
    flex: 0 0 auto;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 56px;
    height: 56px;
    border: 1px solid rgba(125, 211, 252, 0.20);
    border-radius: 17px;
    color: #7dd3fc;
    background: rgba(56, 189, 248, 0.11);
    font-size: 23px;
}

.site-footer__contact-intro small {
    display: block;
    margin-bottom: 5px;
    color: #91a9c9;
    font-size: 10px;
    font-weight: 700;
}

.site-footer__contact-intro strong {
    display: block;
    color: #ffffff;
    font-size: 16px;
    font-weight: 800;
    letter-spacing: -0.025em;
}

.site-footer__contact-actions {
    display: flex;
    flex: 0 0 auto;
    gap: 10px;
}

.site-footer__contact-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    min-height: 49px;
    padding: 0 17px;
    border-radius: 14px;
    color: #ffffff;
    font-size: 10.5px;
    font-weight: 800;
    text-decoration: none;
    transition:
        transform 0.25s ease,
        box-shadow 0.25s ease,
        border-color 0.25s ease,
        background-color 0.25s ease;
}

.site-footer__contact-button:hover {
    color: #ffffff;
    transform: translateY(-2px);
}

.site-footer__contact-button--whatsapp {
    background: #25d366;
    box-shadow: 0 13px 27px rgba(37, 211, 102, 0.18);
}

.site-footer__contact-button--whatsapp:hover {
    background: #20bd5a;
    box-shadow: 0 17px 34px rgba(37, 211, 102, 0.27);
}

.site-footer__contact-button--phone {
    border: 1px solid rgba(191, 219, 254, 0.17);
    background: rgba(255, 255, 255, 0.075);
}

.site-footer__contact-button--phone:hover {
    border-color: rgba(125, 211, 252, 0.32);
    background: rgba(255, 255, 255, 0.12);
}


/* Ana footer alanı */

.site-footer__main {
    position: relative;
    padding: 145px 0 35px;
    border-top: 1px solid rgba(191, 219, 254, 0.07);
    background:
        linear-gradient(
            rgba(255, 255, 255, 0.018) 1px,
            transparent 1px
        ),
        linear-gradient(
            90deg,
            rgba(255, 255, 255, 0.018) 1px,
            transparent 1px
        );
    background-size: 46px 46px;
}

.site-footer__about {
    max-width: 390px;
}

.site-footer__brand {
    display: inline-flex;
    align-items: center;
    gap: 13px;
    color: #ffffff;
    text-decoration: none;
}

.site-footer__brand:hover {
    color: #ffffff;
}

.site-footer__brand-logo {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 66px;
    height: 66px;
    overflow: hidden;
    border: 1px solid rgba(191, 219, 254, 0.14);
    border-radius: 19px;
    background: rgba(255, 255, 255, 0.96);
    box-shadow:
        0 15px 33px rgba(0, 0, 0, 0.20),
        inset 0 1px 0 #ffffff;
}

.site-footer__brand-logo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.site-footer__brand-text {
    display: flex;
    flex-direction: column;
    line-height: 1.15;
}

.site-footer__brand-text strong {
    color: #ffffff;
    font-size: 19px;
    font-weight: 800;
    letter-spacing: -0.04em;
}

.site-footer__brand-text small {
    margin-top: 6px;
    color: #829bbd;
    font-size: 8.5px;
    font-weight: 700;
    letter-spacing: 0.09em;
    text-transform: uppercase;
}

.site-footer__about > p {
    margin: 25px 0 0;
    color: #8fa4c1;
    font-size: 11px;
    line-height: 1.9;
}

.site-footer__specialty {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-top: 22px;
    padding: 14px;
    border: 1px solid rgba(96, 165, 250, 0.13);
    border-radius: 16px;
    background:
        linear-gradient(
            135deg,
            rgba(37, 99, 235, 0.12),
            rgba(14, 165, 233, 0.06)
        );
}

.site-footer__specialty-flag {
    flex: 0 0 auto;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 43px;
    height: 43px;
    border-radius: 13px;
    background: rgba(255, 255, 255, 0.07);
    font-size: 22px;
}

.site-footer__specialty div {
    display: flex;
    flex-direction: column;
}

.site-footer__specialty small {
    margin-bottom: 4px;
    color: #7490b4;
    font-size: 8px;
    font-weight: 700;
}

.site-footer__specialty strong {
    color: #dceafe;
    font-size: 10.5px;
    font-weight: 800;
}

.site-footer__trust {
    display: flex;
    flex-wrap: wrap;
    gap: 9px 15px;
    margin-top: 19px;
}

.site-footer__trust span {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: #839aba;
    font-size: 8.5px;
    font-weight: 700;
}

.site-footer__trust i {
    color: #38bdf8;
}


/* Footer bağlantı sütunları */

.site-footer__column h2 {
    display: flex;
    align-items: center;
    gap: 7px;
    margin: 5px 0 22px;
    color: #ffffff;
    font-size: 12.5px;
    font-weight: 800;
    letter-spacing: -0.02em;
}

.site-footer__column h2::after {
    content: "";
    width: 25px;
    height: 2px;
    border-radius: 999px;
    background:
        linear-gradient(
            90deg,
            #2563eb,
            #38bdf8
        );
}

.site-footer__column nav {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.site-footer__column nav a {
    position: relative;
    display: inline-flex;
    align-items: center;
    width: fit-content;
    padding: 5px 0 5px 13px;
    color: #8da2bf;
    font-size: 9.5px;
    font-weight: 650;
    line-height: 1.45;
    text-decoration: none;
    transition:
        color 0.2s ease,
        transform 0.2s ease;
}

.site-footer__column nav a::before {
    content: "";
    position: absolute;
    left: 0;
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background: #3b82f6;
    transition:
        width 0.2s ease,
        border-radius 0.2s ease;
}

.site-footer__column nav a:hover {
    color: #ffffff;
    transform: translateX(3px);
}

.site-footer__column nav a:hover::before {
    width: 7px;
    border-radius: 999px;
}


/* İletişim */

.site-footer__contact-list {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.site-footer__contact-list > a {
    display: flex;
    align-items: center;
    gap: 11px;
    padding: 9px;
    border: 1px solid rgba(191, 219, 254, 0.07);
    border-radius: 13px;
    color: #ffffff;
    background: rgba(255, 255, 255, 0.025);
    text-decoration: none;
    transition:
        border-color 0.2s ease,
        background-color 0.2s ease,
        transform 0.2s ease;
}

.site-footer__contact-list > a:hover {
    color: #ffffff;
    border-color: rgba(96, 165, 250, 0.17);
    background: rgba(255, 255, 255, 0.05);
    transform: translateX(3px);
}

.site-footer__contact-list > a > span {
    flex: 0 0 auto;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 11px;
    color: #7dd3fc;
    background: rgba(56, 189, 248, 0.09);
    font-size: 14px;
}

.site-footer__contact-list > a > div {
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

.site-footer__contact-list small {
    margin-bottom: 3px;
    color: #6f88aa;
    font-size: 7.5px;
    font-weight: 700;
}

.site-footer__contact-list strong {
    overflow: hidden;
    color: #dbe8f9;
    font-size: 9.5px;
    font-weight: 800;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.site-footer__address {
    display: flex;
    align-items: flex-start;
    gap: 11px;
    margin-top: 15px;
    padding-top: 15px;
    border-top: 1px solid rgba(191, 219, 254, 0.08);
}

.site-footer__address > i {
    flex: 0 0 auto;
    margin-top: 2px;
    color: #7dd3fc;
    font-size: 15px;
}

.site-footer__address strong {
    display: block;
    margin-bottom: 5px;
    color: #e4efff;
    font-size: 9.5px;
    font-weight: 800;
}

.site-footer__address address {
    margin: 0;
    color: #8298b7;
    font-size: 8.5px;
    font-style: normal;
    line-height: 1.7;
}

.site-footer__map {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    margin-top: 13px;
    color: #7dd3fc;
    font-size: 8.5px;
    font-weight: 800;
    text-decoration: none;
}

.site-footer__map i:last-child {
    font-size: 8px;
}


/* Yardımcı bağlantılar */

.site-footer__secondary {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 25px;
    margin-top: 45px;
    padding: 20px 0 0;
    border-top: 1px solid rgba(191, 219, 254, 0.08);
}

.site-footer__secondary-group {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 10px 17px;
}

.site-footer__secondary-group strong {
    color: #d9e8fb;
    font-size: 9px;
    font-weight: 800;
}

.site-footer__secondary-group a {
    color: #7890b0;
    font-size: 8px;
    font-weight: 700;
    text-decoration: none;
    transition: color 0.2s ease;
}

.site-footer__secondary-group a:hover {
    color: #ffffff;
}

.site-footer__working-hours {
    display: flex;
    flex: 0 0 auto;
    align-items: center;
    gap: 10px;
}

.site-footer__working-dot {
    position: relative;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #4ade80;
    box-shadow: 0 0 0 5px rgba(74, 222, 128, 0.08);
}

.site-footer__working-hours div {
    display: flex;
    flex-direction: column;
}

.site-footer__working-hours small {
    margin-bottom: 3px;
    color: #6f88a9;
    font-size: 7px;
}

.site-footer__working-hours strong {
    color: #aebfd7;
    font-size: 8.5px;
    font-weight: 800;
}


/* En alt alan */

.site-footer__bottom {
    position: relative;
    border-top: 1px solid rgba(191, 219, 254, 0.075);
    background: rgba(0, 0, 0, 0.12);
}

.site-footer__bottom-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 25px;
    min-height: 64px;
}

.site-footer__bottom p {
    margin: 0;
    color: #7188a8;
    font-size: 8.5px;
}

.site-footer__bottom p strong {
    color: #a8bad2;
}

.site-footer__bottom nav {
    display: flex;
    flex-wrap: wrap;
    gap: 18px;
}

.site-footer__bottom nav a {
    color: #7188a8;
    font-size: 8px;
    font-weight: 700;
    text-decoration: none;
    transition: color 0.2s ease;
}

.site-footer__bottom nav a:hover {
    color: #ffffff;
}


/* Sabit WhatsApp */

.floating-whatsapp {
    position: fixed;
    right: 22px;
    bottom: 22px;
    z-index: 1050;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    min-height: 55px;
    padding: 0 16px;
    border: 1px solid rgba(255, 255, 255, 0.19);
    border-radius: 18px;
    color: #ffffff;
    background:
        linear-gradient(
            135deg,
            #20bd5a,
            #25d366
        );
    box-shadow:
        0 18px 45px rgba(37, 211, 102, 0.30),
        inset 0 1px 0 rgba(255, 255, 255, 0.19);
    text-decoration: none;
    transition:
        color 0.25s ease,
        transform 0.25s ease,
        box-shadow 0.25s ease;
}

.floating-whatsapp:hover {
    color: #ffffff;
    box-shadow:
        0 23px 52px rgba(37, 211, 102, 0.38),
        inset 0 1px 0 rgba(255, 255, 255, 0.19);
    transform: translateY(-4px);
}

.floating-whatsapp > i {
    position: relative;
    z-index: 2;
    font-size: 23px;
}

.floating-whatsapp__text {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    font-size: 10px;
    font-weight: 800;
    line-height: 1.1;
}

.floating-whatsapp__text small {
    margin-bottom: 4px;
    font-size: 7px;
    font-weight: 700;
    opacity: 0.82;
}

.floating-whatsapp__pulse {
    position: absolute;
    top: -4px;
    left: -4px;
    width: 15px;
    height: 15px;
    border: 2px solid #ffffff;
    border-radius: 50%;
    background: #4ade80;
}

.floating-whatsapp__pulse::after {
    content: "";
    position: absolute;
    inset: -5px;
    border: 1px solid rgba(255, 255, 255, 0.52);
    border-radius: 50%;
    animation: floatingWhatsappPulse 2s ease-out infinite;
}

@keyframes floatingWhatsappPulse {

    0% {
        opacity: 0.8;
        transform: scale(0.7);
    }

    100% {
        opacity: 0;
        transform: scale(1.8);
    }

}


/* Tablet */

@media (max-width: 991.98px) {

    .site-footer__contact-strip {
        align-items: flex-start;
        flex-direction: column;
        padding: 25px;
    }

    .site-footer__contact-actions {
        width: 100%;
    }

    .site-footer__contact-button {
        flex: 1;
    }

    .site-footer__main {
        padding-top: 110px;
    }

    .site-footer__secondary {
        align-items: flex-start;
        flex-direction: column;
    }

}


/* Telefon */

@media (max-width: 575.98px) {
/* =====================================================
   MOBİL FOOTER SADELEŞTİRME
===================================================== */

/* Firma açıklaması */
.site-footer__about > p{
    display:none;
}

/* Uzmanlık kutusu */
.site-footer__specialty{
    display:none;
}

/* Güven rozetleri */
.site-footer__trust{
    display:none;
}

/* Popüler hizmetler */
.site-footer__secondary{
    display:none;
}

/* Alt bağlantılar */
.site-footer__bottom nav{
    display:none;
}

/* Logo biraz küçülsün */

.site-footer__brand-logo{
    width:52px;
    height:52px;
}

.site-footer__brand-text strong{
    font-size:17px;
}

.site-footer__brand-text small{
    font-size:7px;
}

/* Başlıklar */

.site-footer__column h2{
    margin:18px 0 12px;
    font-size:15px;
}

/* Linkler */

.site-footer__column nav a{
    padding:6px 0;
    font-size:13px;
}

/* Telefon kutuları */

.site-footer__contact-list>a{
    padding:10px;
}

.site-footer__contact-list strong{
    font-size:13px;
}

.site-footer__contact-list small{
    font-size:10px;
}

/* Adres */

.site-footer__address address{
    font-size:12px;
}

/* Footer iç boşluğu */

.site-footer__main{
    padding:45px 0 20px;
}

/* En alt telif */

.site-footer__bottom{
    padding:12px 0;
}

.site-footer__bottom p{
    width:100%;
    text-align:center;
    font-size:11px;
}
    .site-footer__contact-strip {
        gap: 21px;
        margin-bottom: -40px;
        padding: 22px 19px;
        border-radius: 21px;
    }

    .site-footer__contact-intro {
        align-items: flex-start;
    }

    .site-footer__contact-icon {
        width: 48px;
        height: 48px;
        border-radius: 15px;
        font-size: 19px;
    }

    .site-footer__contact-intro strong {
        font-size: 13px;
        line-height: 1.45;
    }

    .site-footer__contact-actions {
        flex-direction: column;
    }

    .site-footer__contact-button {
        width: 100%;
    }

    .site-footer__main {
        padding: 100px 0 28px;
    }

    .site-footer__about {
        max-width: none;
    }

    .site-footer__secondary {
        margin-top: 35px;
    }

    .site-footer__working-hours {
        align-items: flex-start;
    }

    .site-footer__bottom-inner {
        align-items: flex-start;
        flex-direction: column;
        justify-content: center;
        padding: 18px 0;
    }

    .site-footer__bottom nav {
        gap: 10px 15px;
    }

    .floating-whatsapp {
        right: 14px;
        bottom: 14px;
        width: 54px;
        height: 54px;
        min-height: 54px;
        padding: 0;
        border-radius: 17px;
        justify-content: center;
    }

    .floating-whatsapp__text {
        display: none;
    }

}

/* =========================================================
   BAĞIMSIZ FOOTER CTA
========================================================= */

.footer-cta {
    position: relative;
    z-index: 5;
    padding: 70px 0 34px;
    background: #ffffff;
}

.footer-cta .site-footer__contact-strip {
    margin: 0;
    transform: none;
}

.site-footer__main {
    padding-top: 75px;
}