/* ================================================================
   ARCHE — Modern Corporate Design System
   ================================================================ */

@import url('https://fonts.googleapis.com/css2?family=Raleway:wght@200;300;400;500&display=swap');

@font-face {
    font-family: PoppinsBold;
    src: url("../fonts/POPPINS/Poppins-Bold.ttf") format("truetype");
}
@font-face {
    font-family: PoppinsMed;
    src: url("../fonts/POPPINS/Poppins-Medium.ttf") format("truetype");
}
@font-face {
    font-family: PoppinsReg;
    src: url("../fonts/POPPINS/Poppins-Regular.ttf") format("truetype");
}
@font-face {
    font-family: PoppinsLight;
    src: url("../fonts/POPPINS/Poppins-Light.ttf") format("truetype");
}

/* ---------- TOKENS ---------- */
:root {
    --brand:       #69489d;
    --brand-dark:  #4d3475;
    --brand-glass: rgba(105, 72, 157, 0.08);
    /* --dark:        #062f6c; */
    --dark:        #3e1e73;
    --text:        #2d2d3a;
    --muted:       #6b7280;
    --border:      #e5e7eb;
    --surface:     #f9fafb;
    --white:       #ffffff;
    --nav-h:       90px;
    --gap:         120px;
    --ease:        0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ---------- BASE ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
    font-family: PoppinsReg, 'Poppins', sans-serif;
    color: var(--text);
    background: var(--white);
    margin: 0;
    padding-top: var(--nav-h);
}
img { max-width: 100%; display: block; }
section[id] { scroll-margin-top: var(--nav-h); }

/* ---------- NAVBAR ---------- */
.navbar {
    position: fixed !important;
    top: 0; left: 0; right: 0;
    height: var(--nav-h);
    background: rgba(255, 255, 255, 0.97);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid transparent;
    z-index: 1050;
    padding: 0 !important;
    transition: border-color var(--ease), box-shadow var(--ease);
}

.navbar.scrolled {
    border-bottom-color: var(--border);
    box-shadow: 0 4px 32px rgba(0, 0, 0, 0.06);
}

.navbar > .container {
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: nowrap;
}

.navbar-brand img {
    height: 42px;
    width: auto;
}

.navbar-collapse {
    margin-left: 60px;
}

.navbar-collapse .navbar-nav {
    column-gap: 36px;
    display: flex;
    align-items: center;
}

.navbar-collapse .nav-link {
    padding: 0 !important;
    font-family: PoppinsReg, sans-serif;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: var(--muted);
    display: inline-block;
    position: relative;
    width: max-content;
    transition: color var(--ease);
}

.navbar-collapse .nav-link::after {
    content: '';
    position: absolute;
    background: var(--brand);
    height: 1.5px;
    width: 0;
    left: 0;
    bottom: -4px;
    transition: width var(--ease);
}

.navbar-collapse .nav-link.dropdown-toggle::after {
    border: none;
    content: '';
    position: absolute;
    background: var(--brand);
    height: 1.5px;
    width: 0;
    left: 0;
    bottom: -4px;
    transition: width var(--ease);
}

.navbar-collapse .nav-link:hover,
.nav-link.active-section {
    color: var(--brand) !important;
}

.navbar-collapse .nav-link:hover::after,
.nav-link.active-section::after {
    width: 100% !important;
}

/* Language dropdown */
.language-box {
    padding: 0;
    margin-right: 24px;
}

.navbar .dropdown-toggle {
    font-family: PoppinsReg, sans-serif;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--text);
    text-decoration: none;
    transition: color var(--ease);
}

.navbar .dropdown-toggle:hover { color: var(--brand); }

.navbar .dropdown-menu.show,
.navbar-collapse .nav-item.dropdown:hover > .dropdown-menu {
    display: block;
    min-width: 80px;
    border: 1px solid var(--border);
    border-radius: 6px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.10);
    padding: 6px;
    background: var(--white);
}

.navbar .dropdown-item {
    font-family: PoppinsReg, sans-serif;
    font-size: 12px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--muted);
    border-radius: 4px;
    padding: 8px 12px;
    transition: all var(--ease);
}

.navbar .dropdown-item:hover,
.navbar .dropdown-item:focus {
    color: var(--brand);
    background: var(--brand-glass);
}

.lang-item.active-lang {
    color: var(--brand) !important;
    font-weight: 700;
}

/* Social icons */
.header-social {
    display: flex;
    align-items: center;
    gap: 16px;
}

.header-social a {
    color: var(--muted);
    font-size: 15px;
    transition: color var(--ease);
    text-decoration: none;
}

.header-social a:hover { color: var(--brand); }

/* Toggler */
.navbar-toggler {
    border: 1px solid var(--border);
    border-radius: 4px;
    padding: 6px 10px;
    transition: all var(--ease);
}
.navbar-toggler:focus { box-shadow: none; }

/* ---------- HERO SLIDER ---------- */
.hero-slider {
    position: relative;
    overflow: hidden;
    width: 100%;
    height: calc(100vh - var(--nav-h));
}

.hero-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    visibility: hidden;
    z-index: 1;
    transition: opacity 1s ease, visibility 1s ease;
    height: 100%;
}

.hero-slide.active {
    opacity: 1;
    visibility: visible;
    z-index: 2;
}

.hero-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.item-text {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to top,
        rgba(8, 4, 20, 0.78) 0%,
        rgba(8, 4, 20, 0.30) 55%,
        transparent 100%
    );
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 0 0 7% 6%;
}

.item-text h1 {
    font-family: Raleway, sans-serif;
    font-size: 70px;
    font-weight: 300;
    color: #fff;
    line-height: 1.1;
    margin-bottom: 20px;
    max-width: 680px;
}

.hero-slide.active h1 {
    animation: heroUp 1.2s ease forwards;
}

.item-text p {
    font-family: PoppinsReg, sans-serif;
    font-size: 15px;
    color: rgba(255, 255, 255, 0.80);
    margin-bottom: 36px;
    max-width: 400px;
    line-height: 1.85;
}

.hero-slide.active p {
    opacity: 0;
    animation: heroUp 1.2s 0.18s ease forwards;
}

.slider-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    align-self: flex-start;
    padding: 0 36px;
    height: 50px;
    border: 1.5px solid rgba(255, 255, 255, 0.65);
    border-radius: 30px;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: #fff;
    font-family: PoppinsReg, sans-serif;
    text-decoration: none;
    background: transparent;
    transition: background var(--ease), border-color var(--ease);
    width: auto;
}

.hero-slide.active .slider-btn {
    opacity: 0;
    animation: heroUp 1.2s 0.36s ease forwards;
}

.slider-btn:hover {
    background: var(--brand);
    border-color: var(--brand);
    color: #fff;
}

.hizmet-card-btn {
    display: block;
    width: fit-content;
    margin: 0 auto;
    text-align: center;
    padding: 0 36px;
    height: 50px;
    line-height: 50px;
    border: 1.5px solid var(--brand);
    border-radius: 30px;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: #fff;
    font-family: PoppinsReg, sans-serif;
    text-decoration: none;
    background: var(--brand);
    transition: background var(--ease), border-color var(--ease);
}

.hizmet-card-btn:hover {
    background: var(--brand-dark);
    border-color: var(--brand-dark);
    color: #fff;
}

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

@keyframes fadeInLeft {
    from { opacity: 0; transform: translateX(-40px); }
    to   { opacity: 1; transform: translateX(0); }
}

@keyframes fadeInRight {
    from { opacity: 0; transform: translateX(40px); }
    to   { opacity: 1; transform: translateX(0); }
}

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

/* Hero navigation */
.hero-nav {
    position: absolute;
    right: 56px;
    bottom: 52px;
    display: flex;
    gap: 10px;
    z-index: 10;
}

.hero-prev,
.hero-next {
    width: 46px;
    height: 46px;
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.35);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    padding: 0;
    transition: all var(--ease);
}

.hero-prev:hover,
.hero-next:hover {
    background: var(--brand);
    border-color: var(--brand);
    transform: scale(1.05);
}

.hero-prev img,
.hero-next img {
    width: 20px;
    height: 20px;
    filter: brightness(0) invert(1);
}

/* ---------- SECTION UTILITY ---------- */
.section-top { margin-top: var(--gap); }

/* ---------- ARCHE INTRO ---------- */
.arche-container {
    margin-top: 90px;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 0 !important;
}

.arche-container .row { width: 100%; }

.arche-container h1.notranslate {
    font-family: Raleway, sans-serif;
    font-size: 96px;
    font-weight: 300;
    color: var(--text);
    line-height: 1;
    letter-spacing: -3px;
    margin: 0;
}

.arche-container h2 {
    font-family: Raleway, sans-serif;
    font-size: 36px;
    font-weight: 300;
    color: var(--text);
    line-height: 1.15;
    margin-bottom: 32px;
    padding-top: 6px;
}

.arche-container h5 {
    font-family: Raleway, sans-serif;
    font-size: 20px;
    font-weight: 400;
    color: var(--text);
    margin-bottom: 12px;
    border-left: 3px solid var(--brand);
    padding-left: 14px;
}

.arche-container h6 {
    font-family: PoppinsReg, sans-serif;
    font-size: 14px;
    font-weight: 700;
    color: var(--text);
    letter-spacing: 0.3px;
    margin-top: 36px;
    margin-bottom: 12px;
    line-height: 1.7;
}

.arche-container p {
    font-family: PoppinsReg, sans-serif;
    font-size: 16px;
    color: var(--text);
    padding-right: 60px;
    line-height: 1.95;
    margin-bottom: 22px;
    text-align: justify;
}

/* Section title with accent line */
.section-title-col h2,
.section-title-col .danisman-title {
    position: relative;
    padding-bottom: 22px;
    margin-bottom: 32px;
}

.section-title-col h2::after,
.section-title-col .danisman-title::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 36px;
    height: 2px;
    background: var(--brand);
}

/* ---------- VIDEO SECTION ---------- */
.video-container {
    margin-top: 80px;
}

.video-container .col-lg-8 { padding: 0 12px; }

.video-container h2 {
    font-family: Raleway, sans-serif;
    font-size: 46px;
    font-weight: 300;
    color: var(--text);
    line-height: 1.25;
    margin-bottom: 52px;
}

.video-container .col-lg-12 {
    height: 620px;
    overflow: hidden;
}

.js-video-play-wrapper {
    position: relative;
    width: 100%;
    overflow: hidden;
}

.js-video-thumbnail {
    width: 100%;
    height: 620px;
    object-fit: cover;
    display: block;
    cursor: pointer;
    transition: transform 0.7s ease;
}

.js-video-play-wrapper:hover .js-video-thumbnail { transform: scale(1.03); }

.js-video-play-wrapper iframe {
    width: 100%;
    height: 620px;
    display: block;
    border: none;
}

.js-video-play-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    cursor: pointer;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 14px;
}

.js-video-play-icon img {
    width: 68px;
    height: 68px;
    filter: drop-shadow(0 4px 20px rgba(0, 0, 0, 0.5));
    transition: transform var(--ease);
}

.js-video-play-wrapper:hover .js-video-play-icon img { transform: scale(1.1); }

.js-video-play-icon p {
    font-family: PoppinsReg, sans-serif;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: #fff;
    margin: 0;
}

/* ---------- SECTION BANNER IMAGES ---------- */
.kurumsal-main-container {
    position: relative;
    overflow: hidden;
}

.kurumsal-main-container img {
    width: 100%;
    max-height: 480px;
    object-fit: cover;
    display: block;
    transition: transform 0.8s ease;
}

/* ---------- KURUMSAL ---------- */
.kurumsal-img-row {
    margin-top: 80px !important;
    margin-bottom: 56px;
}

.kurumsal-img-row img {
    height: 320px;
    object-fit: cover;
    width: 100%;
}

.arche-container .kurumsal-text-row p {
    font-family: PoppinsReg, sans-serif;
    font-size: 15px;
    color: var(--text);
    padding-right: 80px;
    line-height: 1.95;
    margin-bottom: 40px;
    text-align: justify;
}

/* ---------- HİZMETLER ---------- */
.hizmet-container {
    margin-top: 80px;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 0 !important;
}

.hizmet-container .row { width: 100%; }

.hizmet-container h2 {
    font-family: Raleway, sans-serif;
    font-size: 36px;
    font-weight: 300;
    color: var(--text);
    line-height: 1.15;
    margin-bottom: 32px;
    padding-top: 6px;
    position: relative;
    padding-bottom: 22px;
}

.hizmet-container h2::after {
    content: '';
    position: absolute;
    left: 0; bottom: 0;
    width: 36px; height: 2px;
    background: var(--brand);
}

.hizmet-container h3 {
    font-family: Raleway, sans-serif;
    font-size: 21px;
    font-weight: 500;
    color: var(--text);
    margin-bottom: 14px;
    border-left: 3px solid var(--brand);
    padding-left: 14px;
}

.hizmet-container h5 {
    font-family: Raleway, sans-serif;
    font-size: 28px;
    font-weight: 300;
    color: var(--text);
}

.hizmet-container h6 {
    font-family: PoppinsReg, sans-serif;
    font-size: 13px;
    font-weight: 700;
    color: var(--text);
    letter-spacing: 0.3px;
    margin-top: 32px;
    margin-bottom: 12px;
}

.hizmet-container p {
    font-family: PoppinsReg, sans-serif;
    font-size: 15px;
    color: var(--muted);
    padding-right: 60px;
    line-height: 1.95;
    margin-bottom: 24px;
}

.hizmet-container li {
    font-family: PoppinsReg, sans-serif;
    font-size: 15px;
    color: var(--muted);
    line-height: 1.8;
    margin-bottom: 10px;
}

.small-bullets {
    list-style-type: disc;
    padding-left: 20px;
    margin-bottom: 40px;
}

.small-bullets li::marker { color: var(--brand); }

.check-list {
    list-style: none;
    padding-left: 0;
}
.check-list li {
    padding-left: 1.6em;
    position: relative;
}
.check-list li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--brand);
    font-weight: 700;
}

.hizmet-container .hizmet-img-3 {
    margin-top: 56px;
    margin-bottom: 80px;
    width: 100%;
}

/* ---------- DANIŞMANLAR ---------- */
#yk-row {
    margin-top: 20px !important;
}

.danisman-title {
    font-family: Raleway, sans-serif !important;
    font-size: 36px !important;
    font-weight: 300;
    color: var(--text);
    line-height: 1.15;
    padding-top: 6px;
}

.danisman-row {
    margin-top: 80px !important;
    row-gap: 40px;
}

.danisman-row h4 {
    font-family: PoppinsReg, sans-serif;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 3.5px;
    text-transform: uppercase;
    color: var(--white) !important;
    margin-bottom: 36px;
    width: 100%;
    padding-bottom: 16px;
    border-bottom: 1px solid var(--border);
}

.danisman-row .btn {
    padding: 0;
    width: 100%;
    text-align: left;
    border: none;
    background: transparent;
}

.danisman-row .btn .card {
    border: none;
    border-radius: 0;
    overflow: hidden;
    background: transparent;
    position: relative;
}

.danisman-row .btn .card::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0;
    width: 0; height: 2px;
    background: var(--brand);
    transition: width 0.45s ease;
}

.danisman-row .btn:hover .card::after { width: 100%; }

.danisman-row .btn .card-img-top {
    border-radius: 0;
    width: 100%;
    height: 300px;
    object-fit: cover;
    object-position: top;
    transition: transform 0.6s ease;
    display: block;
    filter: grayscale(10%);
}

.danisman-row .btn:hover .card-img-top {
    transform: scale(1.04);
    filter: grayscale(0%);
}

.danisman-row .btn .card-body {
    padding: 16px 0 20px 0;
    background: var(--white);
}

.danisman-row .btn .card-title {
    font-family: PoppinsReg, sans-serif;
    font-size: 14px;
    font-weight: 500;
    color: var(--text);
    margin-bottom: 0;
    text-align: left;
    transition: color var(--ease);
}

.danisman-row .btn:hover .card-title { color: var(--brand); }

/* Danışman Modal */
.danisman-modal .modal-content {
    border: none;
    border-radius: 0;
    background: #f3f1f8;
}

.danisman-modal .modal-header {
    border: none;
    padding: 20px 24px 12px;
}

.danisman-modal .modal-dialog {
    margin-top: 0;
    margin-right: 0;
}

.danisman-modal .modal-body {
    padding: 0;
}

.danisman-modal-inner {
    padding: 8px 40px 48px;
    overflow: hidden;
}

.danisman-modal-inner > img {
    float: left;
    width: 38%;
    margin: 0 32px 16px 0;
    object-fit: cover;
    object-position: top;
}

.danisman-modal .modal-body h3 {
    font-family: Raleway, sans-serif;
    font-size: 38px;
    font-weight: 300;
    color: var(--text);
    margin-top: 0;
    margin-bottom: 8px;
}

.danisman-modal .modal-body h6 {
    font-family: PoppinsReg, sans-serif;
    font-size: 13px;
    color: var(--muted);
    margin-bottom: 32px;
    letter-spacing: 0.5px;
}

.danisman-modal .modal-body p {
    font-family: PoppinsReg, sans-serif;
    font-size: 15px;
    color: var(--muted);
    line-height: 1.85;
    margin-bottom: 16px;
    padding-right: 0;
}

.danisman-modal .modal-social {
    margin-top: 40px;
    margin-bottom: 80px;
}

.danisman-modal .modal-social a {
    color: var(--muted);
    transition: color var(--ease);
}

.danisman-modal .modal-social a:hover { color: var(--brand); }

/* ---------- SECTION OVERLAY PATTERN (tüm sec'lerde ortak) ---------- */
.sec-bg-section {
    position: relative;
    overflow: hidden;
}

.sec-bg-img {
    display: block;
    width: 100%;
    height: 520px;
    object-fit: cover;
    object-position: center;
}

.sec-intro-box {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 2;
    background: rgba(255, 255, 255, 0.78);
    width: 72%;
    padding: 48px 56px;
    text-align: center;
}

.sec-intro-box p {
    font-family: PoppinsReg, sans-serif;
    font-size: 15px;
    color: var(--text);
    line-height: 1.95;
    margin: 0;
}

.sec-intro-box p + p {
    margin-top: 16px;
}

/* ---------- REFERANSLAR ---------- */

.referans-sector-title {
    margin-top: 36px;
    margin-bottom: 8px;
}

.referans-sector-title:first-child {
    margin-top: 0;
}

.referans-sector-title h6 {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-family: PoppinsReg, sans-serif;
    font-size: 12px;
    font-weight: 600;
    color: var(--text);
    text-transform: uppercase;
    letter-spacing: 0.07em;
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 20px;
    padding: 6px 16px;
    margin: 0;
    box-shadow: 0 2px 6px rgba(0,0,0,0.06);
}

.referans-row-custom {
    margin-top: 80px !important;
}

.referans-card-custom {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 2px;
    padding: 20px 16px;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 140px;
    transition: all var(--ease);
}

.referans-card-custom:hover {
    border-color: var(--brand);
    box-shadow: 0 8px 28px rgba(105, 72, 157, 0.10);
    transform: translateY(-3px);
}

.referans-name-custom {
    font-family: PoppinsReg, sans-serif;
    font-size: 14px;
    font-weight: 500;
    color: var(--text);
    margin: 0;
    line-height: 1.55;
    border-left: none !important;
    padding-left: 0 !important;
    transition: color var(--ease);
}

.referans-card-custom:hover .referans-name-custom { color: var(--brand); }

.referans-logo {
    max-width: 100%;
    max-height: 100px;
    width: auto;
    height: auto;
    object-fit: contain;
    mix-blend-mode: multiply;
    /* filter: grayscale(100%);
    opacity: 0.75;
    transition: filter var(--ease), opacity var(--ease); */
}

/* .referans-card-custom:hover .referans-logo {
    filter: grayscale(0%);
    opacity: 1;
} */

/* İletişim overlay kutusu */
.iletisim-intro-box {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0px;
}

.iletisim-intro-box a {
    font-family: Raleway, sans-serif;
    font-size: 28px;
    font-weight: 300;
    color: var(--text);
    text-decoration: none;
    transition: color var(--ease);
}

.iletisim-intro-box a:hover { color: var(--brand); }

.iletisim-intro-box .adres {
    font-family: PoppinsReg, sans-serif;
    font-size: 14px;
    color: var(--muted);
    margin: 2px 0 0;
    line-height: 1.4;
}

/* ---------- İLETİŞİM ---------- */
.contact-box {
    display: flex;
    flex-direction: column;
    margin-bottom: 72px;
}

.contact-box a {
    font-family: Raleway, sans-serif;
    font-size: 30px;
    font-weight: 300;
    color: var(--text);
    margin-bottom: 20px;
    text-decoration: none;
    display: inline-block;
    position: relative;
    width: max-content;
    transition: color var(--ease);
}

.contact-box a:hover { color: var(--brand); }

.contact-box a::after {
    content: '';
    position: absolute;
    background: var(--brand);
    height: 1.5px;
    width: 0; left: 0; bottom: 2px;
    transition: width var(--ease);
}

.contact-box a:hover::after { width: 100%; }

.adres {
    font-family: PoppinsReg, sans-serif;
    font-size: 15px !important;
    color: var(--text) !important;
    line-height: 1.5;
    margin-bottom: 24px !important;
    padding-right: 0 !important;
}

.contact-box iframe {
    border-radius: 2px;
    display: block;
}

.contact-box h1 {
    font-family: Raleway, sans-serif;
    font-size: 40px;
    font-weight: 200;
    color: var(--text);
    margin-top: 10px;
    margin-bottom: 0;
    line-height: 1.1;
}

/* Contact form */
.contactForm { margin-top: 26px; }

.contactForm .col-sm-6 { margin-bottom: 52px; }
.contactForm .col-md-12 { margin-bottom: 52px; }

.txt-field {
    border-bottom: 1px solid var(--border);
    transition: border-color var(--ease);
}

.txt-field:focus-within { border-bottom-color: var(--brand); }

.txt-field label {
    display: block;
    color: var(--muted);
    font-size: 11px;
    font-family: PoppinsReg, sans-serif;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    margin-bottom: 6px;
}

.txt-field input {
    width: 100%;
    padding: 0 4px;
    height: 40px;
    font-size: 15px;
    color: var(--text);
    border: none;
    background: none;
    outline: none;
    font-family: PoppinsReg, sans-serif;
}

.txt-field textarea {
    width: 100%;
    padding: 4px 4px;
    height: 44px;
    font-size: 15px;
    color: var(--text);
    border: none;
    background: none;
    outline: none;
    font-family: PoppinsReg, sans-serif;
    resize: none;
}

.dosya-box { display: flex; flex-direction: column; }

.dosya-box label {
    color: var(--muted);
    font-size: 11px;
    font-family: PoppinsReg, sans-serif;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    margin-bottom: 12px;
}

.dosya-box input[type="file"] {
    font-family: PoppinsReg, sans-serif;
    font-size: 14px;
    color: var(--muted);
}

input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

.form-btn {
    width: 100%;
    height: 52px;
    background: var(--brand) !important;
    border: none;
    border-radius: 20px !important;
    font-size: 11px !important;
    letter-spacing: 3px;
    text-transform: uppercase;
    font-family: PoppinsReg, sans-serif;
    color: #fff !important;
    transition: background var(--ease);
}

.form-btn:hover { background: var(--brand-dark) !important; }

/* ---------- FOOTER ---------- */
footer {
    margin-top: 0;
    background: var(--dark);
    padding: 60px 0 36px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-social {
    display: flex;
    gap: 28px;
    align-items: center;
}

.footer-center {
    display: flex;
    justify-content: center;
    align-items: center;
}

footer a {
    text-decoration: none;
    font-family: PoppinsReg, sans-serif;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.45);
    display: inline-block;
    position: relative;
    transition: color var(--ease);
}

footer a:hover { color: rgba(255, 255, 255, 0.90); }

footer a::after { display: none; }

.copyright {
    text-align: right;
    display: flex;
    align-items: center;
    justify-content: flex-end;
}

footer p {
    font-family: PoppinsReg, sans-serif;
    font-size: 11px;
    color: rgba(255, 255, 255, 0.25);
    margin: 0;
    letter-spacing: 0.5px;
}

/* ---------- RESPONSIVE ---------- */

/* Large tablet / small desktop */
@media screen and (max-width: 1199px) {
    /* Collapse menüyü logo/toggler satırının ALTINA taşı */
    .navbar-collapse {
        position: absolute;
        top: var(--nav-h);
        left: 0;
        right: 0;
        margin-left: 0 !important;
        background: var(--white);
        border-top: 1px solid var(--border);
        padding: 20px 16px 24px;
        box-shadow: 0 8px 24px rgba(0,0,0,0.08);
        max-height: calc(100vh - var(--nav-h));
        overflow-y: auto;
        z-index: 1049;
    }

    .navbar-collapse .navbar-nav {
        flex-direction: column;
        row-gap: 4px;
        column-gap: 0;
    }

    .navbar-collapse .nav-item {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .navbar-collapse .nav-link {
        padding: 10px 0 !important;
        font-size: 14px;
    }

    .header-social {
        justify-content: center;
        margin-top: 14px;
    }

    .language-box {
        margin-right: 0;
        justify-content: center;
        display: flex;
    }
}

@media screen and (min-width: 1200px) and (max-width: 1400px) {
    .navbar-collapse { margin-left: 40px; }
    .navbar-collapse .navbar-nav { column-gap: 24px; }
}

/* Tablet */
@media screen and (max-width: 1024px) {
    :root { --nav-h: 76px; --gap: 90px; }

    .arche-container h1.notranslate { font-size: 52px; margin-bottom: 20px; letter-spacing: -1px; }
    .arche-container h2 { font-size: 28px; margin-bottom: 24px; }
    .arche-container p { padding-right: 0; }
    .arche-container .kurumsal-text-row p { padding-right: 12px; }

    .hizmet-container h2 { font-size: 28px; }
    .hizmet-container p { padding-right: 0; }

    .kurumsal-img-row { margin-top: 48px !important; margin-bottom: 40px; }
    .kurumsal-img-row img { height: 240px; }

    .video-container h2 { font-size: 34px; }
    .video-container .col-lg-12 { height: 380px; }
    .js-video-thumbnail,
    .js-video-play-wrapper iframe { height: 380px; }

    .danisman-modal .modal-body h3 { font-size: 30px; }
    .danisman-modal-inner > img { width: 44%; }
}

/* Mobile */
@media screen and (max-width: 768px) {
    :root { --nav-h: 66px; --gap: 72px; }

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

    .hero-slider { height: 33vh; }
    .item-text { padding: 0 0 5% 5%; }
    .item-text h1 { font-size: 22px; line-height: 1.2; margin-bottom: 12px; }
    .item-text p { display: none; }
    .slider-btn { height: 36px; padding: 0 18px; font-size: 9px; letter-spacing: 1.5px; }
    .hero-nav { right: 12px; bottom: 14px; gap: 6px; }
    .hero-prev, .hero-next { width: 34px; height: 34px; }
    .hero-prev img, .hero-next img { width: 15px; height: 15px; }

    .arche-container { margin-top: 60px; }
    .arche-container h1.notranslate { font-size: 42px; }
    .arche-container h2 { font-size: 26px; }
    .arche-container p { padding-right: 0; }

    .kurumsal-img-row { margin-top: 32px !important; }
    .kurumsal-img-row .col-md-6,
    .kurumsal-img-row .col-md-3 { margin-bottom: 10px; }
    .kurumsal-img-row img { height: 200px; }

    .hizmet-container { margin-top: 56px; }
    .hizmet-container p,
    .hizmet-container li { padding-right: 0; }

    .video-container { margin-top: 56px; }
    .video-container .col-lg-12 { height: 240px; }
    .js-video-thumbnail,
    .js-video-play-wrapper iframe { height: 240px; }
    .js-video-play-icon img { width: 52px; height: 52px; }

    .danisman-row .btn .card-img-top { height: auto; object-fit: unset; }
    .danisman-modal-inner > img {
        float: none;
        width: 70%;
        margin: 0 auto 24px;
        display: block;
    }

    .contact-box a { font-size: 22px; }
    .contact-box h1 { font-size: 38px; }
    .adres { margin-bottom: 16px !important; }
    .contactForm .col-sm-6 { margin-bottom: 36px; }
    .contactForm .col-md-12 { margin-bottom: 36px; }
    .empty-box { display: none; }

    .referans-name-custom { font-size: 13px; }
    .referans-card-custom { height: 120px; }
    /* Mobilde intro kutusu resmin üstüne değil, altına normal akışta gelsin */
    .sec-bg-section { overflow: visible; display: flex; flex-direction: column; }
    .sec-bg-img { height: 220px; order: 1; }
    .sec-bg-section > .container { order: 2; }
    .sec-intro-box {
        position: relative;
        top: auto;
        left: auto;
        transform: none;
        width: 92%;
        margin: -20px auto 0;
        padding: 24px 20px;
    }

    footer { padding: 48px 0 28px; }
    .footer-social { flex-wrap: wrap; gap: 16px; }
    .copyright { justify-content: center; text-align: center; margin-top: 20px; }
    .footer-center { margin-top: 12px; margin-bottom: 4px; }
}

/* Logo banner popup — mobilde içeriğe göre boyutlanır */
@media screen and (max-width: 600px) {
    .logo-banner-modal {
        height: auto !important;
        width: 95vw !important;
    }
    .logo-banner-modal iframe {
        height: 300px !important;
        display: block;
    }
}

@media screen and (max-width: 500px) {
    .hero-slider { height: 33vh; }
    .item-text h1 { font-size: 18px; }
    .slider-btn { height: 32px; padding: 0 14px; font-size: 8px; }
    .danisman-row .btn .card-img-top { height: auto; object-fit: unset; }
    .contact-box h1 { font-size: 30px; }
}

@media screen and (max-width: 550px) {
    .video-container .col-lg-12 { height: 220px; }
    .js-video-thumbnail,
    .js-video-play-wrapper iframe { height: 220px; }
    .js-video-play-icon img,
    .js-video-play-icon p { display: none; }
}

/* ---- Hizmetler Card Carousel ---- */
.hizmet-karusel-wrap {
    position: relative;
    padding: 0 72px;
    max-width: 1400px;
    margin: 0 auto;
}

.hizmet-karusel-viewport {
    overflow: visible;
    min-width: 0;
}

.hizmet-karusel-track {
    display: flex;
    gap: 24px;
    align-items: stretch;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.hizmet-karusel-card {
    flex-shrink: 0;
    display: flex;
    flex-direction: column;
}

.hizmet-karusel-card .card {
    flex: 1;
    border-radius: 10px;
    overflow: hidden;
    border: none;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.18);
    display: flex;
    flex-direction: column;
}

.hizmet-karusel-card .card-header {
    background: var(--white);
    border-bottom: 1px solid var(--border);
    font-family: Raleway, sans-serif;
    font-size: 16px;
    font-weight: 800;
    color: var(--text);
    padding: 0 20px;
    text-align: center;
    min-height: 90px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0;
}

.hizmet-karusel-card h5.card-header {
    margin: 0;
}

.hizmet-karusel-card .card-header p {
    margin: 0;
}

.hizmet-karusel-card .card-body {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    background: var(--white);
    padding: 20px;
    text-align: center;
}

.hizmet-karusel-card .card-text {
    font-family: PoppinsReg, sans-serif;
    font-size: 13px;
    color: var(--text);
    line-height: 1.7;
    margin-bottom: 16px;
    flex: 1;
}

.hizmet-karusel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    width: 48px;
    height: 48px;
    background: var(--brand);
    border: 1px solid var(--brand);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    padding: 0;
    transition: background var(--ease), border-color var(--ease), transform var(--ease);
}

.hizmet-karusel-prev { left: 12px; }
.hizmet-karusel-next { right: 12px; }

.hizmet-karusel-btn:hover:not(:disabled) {
    background: var(--brand);
    border-color: var(--brand);
    transform: translateY(-50%) scale(1.05);
}

.hizmet-karusel-btn:disabled {
    opacity: 0.28;
    cursor: not-allowed;
}

.hizmet-karusel-btn img {
    width: 20px;
    height: 20px;
    filter: brightness(0) invert(1);
}

@media (max-width: 991px) {
    .hizmet-karusel-wrap { padding: 0 56px; }
    .hizmet-karusel-prev { left: 8px; }
    .hizmet-karusel-next { right: 8px; }
    .hizmet-karusel-btn  { width: 40px; height: 40px; }
    .hizmet-karusel-btn img { width: 16px; height: 16px; }
}

@media (max-width: 576px) {
    .hizmet-karusel-wrap {
        padding: 0 0 0 12px;
    }
    .hizmet-karusel-btn {
        display: none;
    }
    .hizmet-karusel-viewport {
        overflow-x: auto;
        overflow-y: hidden;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
    }
    .hizmet-karusel-viewport::-webkit-scrollbar {
        display: none;
    }
    .hizmet-karusel-track {
        padding-right: 12px;
    }
    .hizmet-karusel-card {
        scroll-snap-align: start;
    }
    .hizmet-karusel-card .card-img-top {
        height: 150px;
        object-fit: cover;
    }
    .hizmet-karusel-card .card-header {
        font-size: 13px;
        min-height: 64px;
        padding: 8px 12px;
    }
}

/* Unused legacy selectors kept for safety */
.news-container,
.news-container h2,
.owl-two .card,
.haber-container,
.haber-container .card,
.blog-title,
.kurumsal-banner-text,
.referans-row,
.new-references .card,
.new-references .card-body,
.new-references .card-text,
.new-references h4 { /* preserved, not visually active */ }


/* ================================================================
   McKINSEY-STYLE SECTION LAYOUT
   ================================================================ */

/* --- Section title bar (white bg, centered title) --- */
.sec-title-bar {
    background: var(--white);
    text-align: center;
    padding: 80px 24px 64px;
    border-top: 1px solid var(--border);
}

.sec-title-bar h2 {
    font-family: PoppinsReg, sans-serif;
    font-size: 14px;
    font-weight: 900;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--text);
    margin: 0;
    line-height: 1;
}

/* --- Hizmet pages: dark title bar override --- */
.sec-title-bar.sec-dark-body {
    padding: 80px 24px 64px;
    border-top: none;
}

.sec-title-bar.sec-dark-body h4 {
    color: rgba(255, 255, 255, 0.90);
}

/* --- Light content body (white bg) --- */
.sec-light-body {
    background: var(--white);
    position: relative;
    z-index: 1;
    padding: 100px 0 100px;
}

.sec-light-body .sec-content p  { color: rgba(45, 45, 58, 0.72); }
.sec-light-body .sec-content h3 { color: var(--text); }
.sec-light-body .sec-content h5 { color: var(--text); }
.sec-light-body .sec-content h6 { color: var(--text); }
.sec-light-body .sec-content li { color: rgba(45, 45, 58, 0.72); }

/* --- Banner image (overlaps dark area below) --- */
.sec-banner {
    position: relative;
    z-index: 2;
    margin-bottom: -160px;
    overflow: hidden;
    padding: 0 3cm;
}

.sec-banner img {
    width: 100%;
    height: 520px;
    object-fit: cover;
    display: block;
}

/* --- Dark content body --- */
.sec-dark-body {
    background: var(--dark);
    position: relative;
    z-index: 1;
    padding: 100px 0 100px;
    overflow: hidden;
}

/* --- Content inside dark body --- */
.sec-content p {
    font-family: PoppinsReg, sans-serif;
    font-size: 15px;
    color: rgba(255, 255, 255, 0.62);
    line-height: 1.95;
    margin-bottom: 24px;
    padding-right: 0;
    text-align: justify;
}

.sec-content h3 {
    font-family: Raleway, sans-serif;
    font-size: 21px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.90);
    border-left: 3px solid var(--brand);
    padding-left: 14px;
    margin-bottom: 14px;
}

.sec-content h5 {
    font-family: Raleway, sans-serif;
    font-size: 20px;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.90);
    border-left: 3px solid var(--brand);
    padding-left: 14px;
    margin-bottom: 12px;
    border-top: none;
}

.sec-content h6 {
    font-family: PoppinsReg, sans-serif;
    font-size: 16px;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.78);
    letter-spacing: 0.3px;
    margin-top: 32px;
    margin-bottom: 12px;
}

.sec-content li {
    font-family: PoppinsReg, sans-serif;
    font-size: 15px;
    color: rgba(255, 255, 255, 0.62);
    line-height: 1.8;
    margin-bottom: 10px;
}

.sec-content .small-bullets { margin-bottom: 40px; }
.sec-content .small-bullets li::marker { color: var(--brand); }

.sec-content .hizmet-img-3 {
    width: 100%;
    display: block;
    margin-top: 56px;
    margin-bottom: 80px;
}

/* Hizmet Slider */
.hizmet-slider {
    width: 90%;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 16px;
}

.hizmet-main {
    flex: 1;
    min-width: 0;
}

.hizmet-img-area {
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 7;
    overflow: hidden;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 8px 40px rgba(0, 0, 0, 0.30);
}

.hizmet-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.8s ease, visibility 0.8s ease;
}

.hizmet-slide.active {
    opacity: 1;
    visibility: visible;
}

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

.hizmet-dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 14px;
}

.hizmet-prev,
.hizmet-next {
    width: 46px;
    height: 46px;
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.35);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    padding: 0;
    flex-shrink: 0;
    transition: all var(--ease);
}

.hizmet-prev:hover,
.hizmet-next:hover {
    background: var(--brand);
    border-color: var(--brand);
    transform: scale(1.05);
}

.hizmet-prev img,
.hizmet-next img {
    width: 20px;
    height: 20px;
    filter: brightness(0) invert(1);
}

.hizmet-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.25);
    border: 1.5px solid rgba(255, 255, 255, 0.40);
    cursor: pointer;
    transition: background var(--ease), border-color var(--ease);
}

.hizmet-dot.active {
    background: var(--brand);
    border-color: var(--brand);
}

/* Hizmetler cards */
.hizmet-cards-row {
    margin-top: 0;
}

.hizmet-card {
    background: var(--surface);
    color: var(--text) !important;
    border: 1px solid rgba(255, 255, 255, 0.10);
    border-radius: 12px;
    padding: 36px 32px;
    width: 100%;
    transition: border-color var(--ease), background var(--ease);
}

.hizmet-card:hover {
    border-color: var(--brand);
}

.hizmet-card h3 {
    margin-top: 0;
    color: var(--text) !important;
}

.hizmet-card p,
.hizmet-card li {
    color: var(--text) !important;
}

.hizmet-card .small-bullets {
    margin-bottom: 0;
}

/* Sub-images rows inside dark body */
.sec-dark-body .kurumsal-img-row {
    margin-top: 56px !important;
    margin-bottom: 48px;
}

.sec-dark-body .kurumsal-img-row img {
    height: 280px;
    object-fit: cover;
    width: 100%;
    display: block;
}

/* --- Danışmanlar in dark body --- */
.sec-dark-body .danisman-row h4 {
    color: var(--brand);
    border-bottom-color: rgba(255, 255, 255, 0.10);
}

.sec-dark-body .danisman-row .btn .card-body {
    background: transparent;
}

.sec-dark-body .danisman-row .btn .card-title {
    color: rgba(255, 255, 255, 0.82);
}

.sec-dark-body .danisman-row .btn:hover .card-title { color: var(--brand); }

/* --- Referanslar in dark body --- */
.sec-dark-body .referans-sector-title h6 {
    background: #fff;
    color: var(--text);
    border-color: rgba(255, 255, 255, 0.25);
    box-shadow: 0 2px 8px rgba(0,0,0,0.18);
}

.sec-dark-body .referans-row-custom { margin-top: 15px !important; }

.sec-dark-body .referans-card-custom {
    background: #fefefe;
    border-color: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
}

.sec-dark-body .referans-card-custom:hover {
    background: #e3e3e3;
    border-color: var(--brand);
    box-shadow: 0 8px 28px rgba(105, 72, 157, 0.20);
}

.sec-dark-body .referans-name-custom {
    color: var(--text);
}

.sec-dark-body .referans-card-custom:hover .referans-name-custom { color: var(--text); }

/* --- İletişim in dark body --- */
.sec-dark-body .contact-box a {
    color: rgba(255, 255, 255, 0.80);
}

.sec-dark-body .contact-box a:hover { color: #fff; }

.sec-dark-body .contact-box a::after {
    background: rgba(255, 255, 255, 0.55);
}

.sec-dark-body .adres { color: rgba(255, 255, 255, 0.48) !important; }

.sec-dark-body .contact-box h1 { color: rgba(255, 255, 255, 0.88); }

.sec-dark-body .txt-field {
    border-bottom-color: rgba(255, 255, 255, 0.18);
}

.sec-dark-body .txt-field:focus-within {
    border-bottom-color: rgba(255, 255, 255, 0.55);
}

.sec-dark-body .txt-field label { color: rgba(255, 255, 255, 0.40); }

.sec-dark-body .txt-field input,
.sec-dark-body .txt-field textarea { color: rgba(255, 255, 255, 0.85); }

.sec-dark-body .dosya-box label { color: rgba(255, 255, 255, 0.40); }

.sec-dark-body .dosya-box input[type="file"] { color: rgba(255, 255, 255, 0.48); }

/* First section separation from white areas above */
#kurumsal { margin-top: var(--gap); }
#kurumsal .sec-title-bar { border-top: none; }

/* Responsive */
@media (max-width: 1024px) {
    .sec-title-bar { padding: 60px 24px 48px; }
    .sec-banner { margin-bottom: -120px; padding: 0 1.5cm; }
    .sec-banner img { height: 400px; }
    .sec-dark-body { padding: 180px 0 80px; }
    .sec-dark-body .kurumsal-img-row img { height: 200px; }
}

@media (max-width: 768px) {
    .sec-title-bar { padding: 48px 16px 36px; }
    .sec-title-bar h2 { font-size: 10px; letter-spacing: 3px; }
    .sec-banner { margin-bottom: -70px; padding: 0 16px; }
    .sec-banner img { height: 260px; }
    .sec-dark-body { padding: 110px 0 60px; }
    /* sec-bg-section (index sayfaları) sonrasında banner overlap yok, daha az padding yeterli */
    .sec-bg-section + .sec-dark-body { padding-top: 40px; }
    .sec-dark-body .kurumsal-img-row img { height: 160px; }
    .sec-content .hizmet-img-3 { margin-top: 32px; margin-bottom: 48px; }
}

/* ── Scroll Buttons ────────────────────────────────────── */
#scroll-btns {
    position: fixed;
    right: 22px;
    bottom: 28px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    z-index: 9999;
}

#scroll-btns button {
    width: 44px;
    height: 44px;
    border: none;
    border-radius: 50%;
    background: var(--brand);
    color: var(--white);
    font-size: 16px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(0,0,0,.25);
    transition: opacity .3s, background .2s, transform .2s;
}

#scroll-btns button:hover {
    background: var(--brand-dark);
    transform: scale(1.1);
}

#scroll-top  { opacity: 0; pointer-events: none; }
#scroll-bottom { opacity: 1; }

/* ===== Lokasyon Animasyonu ===== */
.la-wrapper { width: 100%; }
.la-svg { width: 100%; height: auto; display: block; overflow: visible; }

.la-line-base { stroke: #d8c6f0; stroke-width: 1.5; fill: none; }
.la-line-glow {
    fill: none;
    stroke: #9333EA;
    stroke-width: 2;
    stroke-opacity: 0;
    transition: stroke-opacity 0.5s ease;
    filter: drop-shadow(0 0 3px rgba(147, 51, 234, 0.8));
}
.la-line-glow.lit { stroke-opacity: 0.75; }

.la-pin-shape { fill: rgba(147, 51, 234, 0.25); transition: fill 0.4s ease; }
.la-pin-dot   { fill: rgba(147, 51, 234, 0.25); transition: fill 0.4s ease; }

.la-outer-ring {
    fill: rgba(147, 51, 234, 0.12);
    transform-box: fill-box;
    transform-origin: center;
    opacity: 0;
}
.la-inner-ring {
    fill: rgba(192, 132, 252, 0.2);
    transform-box: fill-box;
    transform-origin: center;
    opacity: 0;
}

.la-label {
    font-family: 'Segoe UI', Arial, sans-serif;
    font-size: 13px;
    font-weight: 700;
    fill: #1a1a2e;
    text-anchor: middle;
}

.la-pin.la-active .la-pin-shape { fill: #7C3AED; }
.la-pin.la-active .la-pin-dot   { fill: #fff; }
.la-pin.la-active .la-outer-ring { animation: laRingOut 1.3s ease-out infinite; }
.la-pin.la-active .la-inner-ring { animation: laInnerGlow 1.3s ease-in-out infinite; }

@keyframes laRingOut {
    0%   { transform: scale(0.3); opacity: 0.6; }
    100% { transform: scale(2.5); opacity: 0; }
}
@keyframes laInnerGlow {
    0%, 100% { transform: scale(0.85); opacity: 0.25; }
    50%       { transform: scale(1.2);  opacity: 0.6; }
}
