@import url('https://fonts.googleapis.com/css2?family=DM+Sans:wght@400;500;700&family=Poppins:wght@400;500;700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Open+Sans:wght@400;700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@600&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

ul {
    list-style: none;
}

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

img {
    width: 100%;
    height: auto;
    display: block;
}

:root {
    --encho-baslik-yukseklik: 4.5rem;
    --hue: 159;
    --detay-renk: #5776d6;
    --title-color: hsl(var(--hue) 41% 10%);
    --text-color: hsl(0 0% 42%);
    --text-color-light: hsl(0 0% 98%);
    --body-color: hsl(0 0% 98%);
    --title-font-size: 1.875rem;
    --subtitle-font-size: 1rem;
    --title-font: 'Poppins', sans-serif;
    --body-font: 'DM Sans', sans-serif;
    --ui-surface: #ffffff;
    --ui-border: #e4e6ee;
    --ui-border-2: #d7dbe7;
    --ui-shadow-1: 0 1px 2px rgba(16, 24, 40, 0.06);
    --ui-shadow-2: 0 10px 24px rgba(16, 24, 40, 0.08);
    --ui-shadow-3: 0 16px 40px rgba(16, 24, 40, 0.12);
    --ui-radius-1: 10px;
    --ui-radius-2: 12px;
    --ui-radius-3: 16px;
    --ui-ring: 0 0 0 4px rgba(87, 118, 214, 0.18);
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
    text-size-adjust: 100%;
}

body {
    font: 400 1rem var(--body-font);
    color: var(--text-color);
    background: var(--body-color);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    --encho-scroll-kayma-renk: #ffffff;
    --encho-scroll-kayma-ana-renk: #5776d6;
}

body::-webkit-scrollbar {
    width: 3.5px
}

body.no-scroll {
    overflow: hidden;
}

body::-webkit-scrollbar-track {
    background: var(--encho-scroll-kayma-renk);
    border-radius: 18px;
}

body::-webkit-scrollbar-thumb {
    background: var(--encho-scroll-kayma-ana-renk);
    border-radius: 18px;
    border: 5px solid #5776d6;
}

@supports not selector(::-webkit-scrollbar) {
    body {
        scrollbar-color: var(--encho-scroll-kayma-ana-renk) var(--encho-scroll-kayma-renk);
    }
}

.title {
    font: 700 var(--title-font-size) var(--title-font);
    color: var(--title-color);
    -webkit-font-smoothing: auto;
    letter-spacing: -0.01em;
}

.button {
    background-color: #5776d6;
    color: var(--text-color-light);
    height: 3.5rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0 2rem;
    border-radius: 12px;
    font: 600 1rem var(--body-font);
    transition: background 0.25s ease, transform 0.15s ease, box-shadow 0.25s ease;
    box-shadow: 0 10px 22px rgba(87, 118, 214, 0.18);
    border: 1px solid rgba(255, 255, 255, 0.18);
}

.button:hover {
    background: #4b66be;
    transform: translateY(-1px);
    box-shadow: 0 14px 30px rgba(87, 118, 214, 0.22);
}

.button:active {
    transform: translateY(0);
    box-shadow: 0 10px 22px rgba(87, 118, 214, 0.18);
}

.container {
    margin-left: 1.5rem;
    margin-right: 1.5rem;
}

.grid {
    display: grid;
    gap: 2rem;
}

.section {
    padding: calc(5rem + var(--encho-baslik-yukseklik)) 0;
    background: transparent;
}

.section .title {
    margin-bottom: 1rem;
}

.section .subtitle {
    font-size: var(--subtitle-font-size);
    color: rgba(15, 23, 42, 0.62);
}

.section header {
    margin-bottom: 4rem;
    text-align: center;
}

.section header strong {
    color: var(--detay-renk);
}

.section header h2.title {
    font-size: 28px;
    color: var(--detay-renk);
    text-align: center;
    margin-bottom: 15px;
}

#header {
    border-bottom: 1.8px solid #e4e4e4;
    margin-bottom: 2rem;
    display: flex;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 100;
    background-color: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    width: 100%;
}

#header.scroll {
    box-shadow: 0px 10px 24px rgba(0, 0, 0, 0.10);
}

.logo {
    font: 700 1.31rem var(--title-font);
    color: var(--title-color);
    letter-spacing: -0.01em;
}

.logo span {
    color: var(--detay-renk);
}

.logo-alt span {
    color: var(--body-color);
}

nav {
    height: var(--encho-baslik-yukseklik);
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
}

nav ul li {
    text-align: center;
}

nav ul li a {
    transition: color 0.2s, background 0.2s;
    position: relative;
    padding: 0.35rem 0.6rem;
    border-radius: 999px;
}

nav ul li a:hover,
nav ul li a.active {
    color: var(--detay-renk);
    background: rgba(87, 118, 214, 0.08);
}

nav ul li a::after {
    content: '';
    width: 0%;
    height: 2px;
    background: var(--detay-renk);
    position: absolute;
    left: 10px;
    bottom: -1.5rem;
    transition: width 0.2s;
    border-radius: 999px;
}



nav .menu {
    opacity: 0;
    visibility: hidden;
    top: -20rem;
    transition: 0.2s;
}

nav .menu ul {
    display: none;
}

nav.show .menu {
    opacity: 1;
    visibility: visible;
    background: rgba(255, 255, 255, 0.96);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    height: 100vh;
    width: 100vw;
    position: fixed;
    top: 0;
    left: 0;
    display: grid;
    place-content: center;
}

nav.show .menu ul {
    display: grid;
}

nav.show ul.grid {
    gap: 3rem;
}

.toggle {
    color: var(--detay-renk);
    font-size: 1.5rem;
    cursor: pointer;
}

nav .icon-close {
    visibility: hidden;
    opacity: 0;
    position: absolute;
    top: -1.5rem;
    right: 1.5rem;
    transition: 0.2s;
}

nav.show div.icon-close {
    visibility: visible;
    opacity: 1;
    top: 1.5rem;
}

.giriş {
    padding: calc(5rem + var(--encho-baslik-yukseklik)) 0;
    background: transparent;
}

.giriş .container {
    display: flex;
    justify-content: center;
    align-items: center;
}

#giriş .yazı {
    margin-left: 1.5rem;
    margin-right: 1.5rem;
    text-align: center;
    margin-top: 2rem;
    margin-bottom: 2rem;
}

.giriş .resim {
    width: 37%;
}

.giriş .resim img {
    width: 100%;
    margin-left: -75px;

}

#giriş .button {
    margin-top: 1rem;
}

#giriş .yazı h2 {
    font-size: 53px;
    line-height: 1.05;
    letter-spacing: -0.02em;
}

#giriş .yazı p {
    margin-bottom: 1rem;
    font-size: 19px;
    line-height: 1.7;
    color: rgba(15, 23, 42, 0.62);
}

.önemli-yazı {
    color: var(--detay-renk);
    font-family: var(--body-font);
}

#arama {
    width: 100%;
    max-width: 600px;
    padding: 12px 20px;
    border: 2px solid #e0e0e0;
    border-radius: 30px;
    font-size: 16px;
    box-shadow: inset 0 3px 6px rgba(0, 0, 0, 0.05);
    outline: none;
    transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.15s ease;
    background: #fff;
}

#arama:focus {
    border-color: rgba(87, 118, 214, 0.55);
    box-shadow: 0 0 0 4px rgba(87, 118, 214, 0.16), inset 0 3px 6px rgba(0, 0, 0, 0.05);
    transform: translateY(-1px);
}

button:focus, 
.toggle:focus, 
.soru-item:focus, 
a:focus, 
input:focus, 
textarea:focus, 
select:focus, 
[role="button"]:focus, 
[tabindex]:focus, 
*:focus {
  outline: none; 
  -webkit-tap-highlight-color: transparent; 
  box-shadow: none; 
  background-color: transparent; 
}

:where(a, button, input, textarea, select, .toggle, .soru-item, [role="button"], [tabindex]):focus-visible {
  box-shadow: var(--ui-ring);
  border-radius: 10px;
}

#arama::placeholder {
    color: #888;
    font-weight: 500;
}

#arama:focus {
    cursor: text;
}

#arama + .hizmetler {
    margin-top: 10px;
}

.hizmet img {
    width: 60px;
    height: 60px;
    border-radius: 10px;
}

.hizmet {
    padding: 20px;
    border: 1px solid #e0e0e0;
    border-radius: 12px;
    background-color: #ffffff;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    text-align: center;
    transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    min-height: 250px;
    position: relative;
}

@media (min-width: 562px) {
    .hizmet {
        max-width: 270px;
        max-height: 350px;
        
    }
}

.hizmet:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.12);
    border-color: rgba(87, 118, 214, 0.25);
}

.hizmetler.kartı {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 24px;
    padding: 24px;
}

#hizmetlerimiz .hizmetler.kartı {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 24px;
}

#hizmetlerimiz .hizmet {
    padding: 1.25rem;
    box-shadow: 0px 2px 8px rgba(0, 0, 0, 0.06);
    border-bottom: 0.25rem solid var(--detay-renk);
    border-radius: 12px;
    text-align: center;
    background-color: #ffffff;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

#hizmetlerimiz .hizmet:hover {
    transform: translateY(-4px);
    box-shadow: 0px 12px 28px rgba(0, 0, 0, 0.10);
}

#hizmetlerimiz .hizmet img {
    width: 50%;
    height: auto;
    border-radius: 10px;
}

#hizmetlerimiz .hizmet .title {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
    text-align: center;
    color: #333;
    font-weight: 700;
    margin-top: auto;
}

@media (max-width: 768px) {
    .hizmetler.kartı {
        grid-template-columns: repeat(2, 1fr);
    }
}

.populer {
    position: absolute;
    top: -10px;
    right: -10px;
    background: linear-gradient(45deg, #ffaf00, #ffc107);
    color: #fff;
    font-size: 0.8rem;
    font-weight: bold;
    padding: 5px 10px;
    border-radius: 6px;
    box-shadow: 0 6px 14px rgba(0, 0, 0, 0.12);
    transform: rotate(-10deg);
    z-index: 2;
}

.ekonomik {
    position: absolute;
    top: -10px;
    right: -10px;
    background: linear-gradient(45deg, #28a745, #34d058);
    color: #fff;
    font-size: 0.8rem;
    font-weight: bold;
    padding: 5px 10px;
    border-radius: 6px;
    box-shadow: 0 6px 14px rgba(0, 0, 0, 0.12);
    transform: rotate(-10deg);
    z-index: 2;
}

.ucretsiz {
    position: absolute;
    top: -10px;
    right: -10px;
    background: linear-gradient(45deg, #182b3d, #39bdba);
    color: #fff;
    font-size: 0.8rem;
    font-weight: bold;
    padding: 5px 10px;
    border-radius: 6px;
    box-shadow: 0 6px 14px rgba(0, 0, 0, 0.12);
    transform: rotate(-10deg);
    z-index: 2;
}

.populer-ekonomik {
    position: absolute;
    top: -10px;
    right: -10px;
    background: linear-gradient(45deg, #ffaf00, #ffc107, #28a745, #34d058);
    color: #fff;
    font-size: 0.8rem;
    font-weight: bold;
    padding: 5px 10px;
    border-radius: 6px;
    box-shadow: 0 6px 14px rgba(0, 0, 0, 0.12);
    transform: rotate(-10deg);
    z-index: 2;
}

.hizmet .ozellikler {
    margin-top: 5px;
    list-style: none;
    padding: 0;
    font-size: 0.9rem;
    margin-bottom: 5px;
    color: rgba(15, 23, 42, 0.62);
}

.hizmet .ozellikler li {
    display: flex;
    align-items: center;
    margin-bottom: 5px;
    justify-content: center;
}

.hizmet .ozellikler li::before {
    content: "✔";
    margin-right: 6px;
    color: var(--detay-renk);
    font-weight: 800;
}

.swiper-slide {
    height: auto;
    padding: 4rem 1rem;
}

.swiper-pagination-bullet {
    width: 0.75rem;
    height: 0.75rem;
    opacity: 0.45;
}

.swiper-pagination-bullet-active {
    background: var(--detay-renk);
    opacity: 1;
}


@media (min-width: 1200px) {
    .container {
        max-width: 1200px;
        margin-left: auto;
        margin-right: auto;
    }
    .section {
        padding: 5.2rem 0;
    }
    .section header,
    #testimonials header {
        max-width: 44rem;
        text-align: center;
        margin-left: auto;
        margin-right: auto;
    }
    .button {
        height: 3.125rem;
    }
    nav .menu {
        opacity: 1;
        visibility: visible;
        top: 0;
    }
    nav .menu ul {
        display: flex;
        gap: 0.7rem;
    }
    nav .menu ul li a.title {
        font: 500 1rem var(--body-font);
        -webkit-font-smoothing: antialiased;
    }
    nav .menu ul li a.title.active {
        font-weight: 700;
        -webkit-font-smoothing: auto;
    }
    nav .icon-menu {
        display: none;
    }
    main {
        margin-top: var(--encho-baslik-yukseklik);
    }
}

@media (min-width: 992px) {
    :root {
        --title-font-size: 2.25rem;
        --subtitle-font-size: 1.125rem;
    }
}

@media (max-width: 768px) {
    .resim {
        display: none;
    }
}

.footer {
    background-color: #0f172a;
    color: #fff;
    padding: 30px 0;
    width: 100%;
    box-sizing: border-box;
}

footer .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    box-sizing: border-box;
    display: flex;
    justify-content: space-between;
}

footer .marka {
    margin-bottom: 5px;
    max-width: 600px; 
    text-align: left; 
}

footer .marka p {
    color: rgba(255, 255, 255, 0.82);
    margin-bottom: 0.75rem;
    word-wrap: break-word;
    line-height: 1.75;
}

#footer .logo {
    color: #fff;
    font-size: 24px;
}

.footer .logo-alt span {
    color: var(--detay-renk);
}

.footer .kutu-tasarım {
    display: flex;
}

.footer .kutu {
    padding: 15px;
    margin-bottom: 20px;
}

.footer .kutu-content h3 {
    font-size: 20px;
    color: #fff;
    margin-bottom: 10px;
}

.footer .kutu-content a {
    display: block;
    color: rgba(255, 255, 255, 0.82);
    text-decoration: none;
    margin-bottom: 8px;
    transition: color 0.2s ease, transform 0.2s ease;
}

.footer .kutu-content a:hover {
    color: #fff;
    transform: translateX(2px);
}

@media (max-width: 768px) {
    .kutu-tasarım {
        flex-direction: column;
        align-items: right;
    }
    .kutu {
        margin-right: 0;
    }
}

.tıkla-git {
    background: var(--detay-renk);
    color: var(--text-color-light);
    position: fixed;
    right: 1rem;
    bottom: 1rem;
    padding: 0.5rem;
    clip-path: circle();
    font-size: 1.5rem;
    line-height: 0;
    visibility: hidden;
    opacity: 0;
    transition: 0.3s;
    transform: translateY(25%);
    box-shadow: 0 10px 20px rgba(87, 118, 214, 0.18);
}

.tıkla-git.show {
    visibility: visible;
    opacity: 1;
    transform: translateY(0);
}

.google-play {
  margin-left: -15px;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  flex-direction: column-reverse;
  gap: 10px;
}

.google-play img {
  width: 173px;
  height: auto;
}

@media (min-width: 769px) {
  .google-play {
    flex-direction: row; 
    align-items: center;
  }
}


.dil-menu-kapsayici {
    position: relative;
    width: 150px;
    height: 45px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 999px;
    padding: 8px;
    background-color: #0f172a;
    cursor: pointer;
    color: #fdfdfd;
    font-family: 'Poppins', sans-serif;
    margin-left: 12px;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.dil-menu-kapsayici:hover {
    transform: translateY(-1px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.18);
}

.dil-secili-secenek {
    display: flex;
    align-items: center;
    justify-content: center;
}

.dil-secili-secenek img {
    width: 24px;
    height: 24px;
}

.dil-menu-secenekler {
    position: absolute;
    bottom: 100%;
    left: 0;
    width: 100%;
    background-color: #0f172a;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 12px;
    display: none;
    flex-direction: column;
    margin: 0;
    padding: 8px 0;
    list-style: none;
    z-index: 10;
    justify-content: center;
    overflow: hidden;
    box-shadow: 0 14px 30px rgba(0, 0, 0, 0.22);
}

.dil-menu-secenekler li {
    padding: 10px 8px;
    display: flex;
    align-items: center;
    cursor: pointer;
    color: rgba(255, 255, 255, 0.86);
    justify-content: center;
    transition: background 0.15s ease;
}

.dil-menu-secenekler li:hover {
    background-color: rgba(255, 255, 255, 0.08);
}

.dil-secili-secenek img, .dil-menu-secenekler img {
    object-fit: contain; 
    width: 25px;
    height: 25px;
    margin-right: 5px;
}

.dil-menu-kapsayici.acik .dil-menu-secenekler {
    display: flex;
}

.encholoader-it {
    background: #fff;
    position: fixed;
    z-index: 10001;
    height: 100%;
    width: 100%;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.loader-encho {
    position: relative;
    font-size: 4rem;
    width: 4rem;
    height: 4rem;
    border-radius: 50%;
    border: 0.5rem solid #eaecec;
    border-top: 0.5rem solid #5776d6;
    animation: spin 0.9s linear infinite;
}

.cerez-bolum {
left: 20px;
width: calc(100% - 40px);
bottom: 20px;
display: none;
position: fixed;
max-width: 300px;
background: #fff;
border-radius: 12px;
padding: 20px;
transition: bottom 0.5s ease;
box-shadow: 0 10px 30px rgba(16, 24, 40, 0.12);
z-index: 1000;
border: 1px solid var(--ui-border);
}

.cerez-data {
flex-direction: column;
}
.cerez-bolum.show {
display: block;
}

.cerez-baslik {
color: #111827;
font-weight: 700;
font-size: 1em;
margin-bottom: 0.5em;
}

.cerez-body {
font-size: 0.9em;
line-height: 1.6;
color: rgba(15, 23, 42, 0.64);
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

@font-face {
  font-family: 'icomoon';
  src: url('../font/icon-font.ttf') format('truetype');
}

[class^="icon-"], [class*=" icon-"] {
  font-family: 'icomoon' !important;
  font-style: normal;
  line-height: 1;
}

.icon-arrow-up:before {
  content: "\e90c";
}
.icon-phone:before {
  content: "\e900";
}
.icon-close:before {
  content: "\e901";
}
.icon-cosmetic:before {
  content: "\e902";
}
.icon-facebook:before {
  content: "\e903";
}
.icon-instagram:before {
  content: "\e904";
}
.icon-mail:before {
  content: "\e905";
}
.icon-map-pin:before {
  content: "\e906";
}
.icon-menu:before {
  content: "\e907";
}
.icon-trim:before {
  content: "\e908";
}
.icon-whatsapp:before {
  content: "\e909";
}
.icon-woman-hair:before {
  content: "\e90a";
}
.icon-youtube:before {
  content: "\e90b";
}

.soru {
  margin-top: 20px;
  padding: 0 15px;
}

.soru-item {
  border-bottom: 1px solid #e0e0e0;
  padding: 15px 0;
  cursor: pointer;
  position: relative;
}

.soru-secenek {
  font-size: 20px;
  font-weight: 650;
  margin: 0;
  position: relative;
  color: #111827;
}

.soru-cevap {
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transition: all 0.3s ease;
  font-size: 16px;
  margin-top: 10px;
  line-height: 1.7;
  color: rgba(15, 23, 42, 0.64);
}

.soru-item.aktif .soru-cevap {
  max-height: 200px;
  opacity: 1;
}

.soru-item.aktif .soru-secenek::after {
  content: "-";
  position: absolute;
  right: 15px;
  font-size: 20px;
  color: #444;
}

.soru-secenek::after {
  content: "+";
  position: absolute;
  right: 15px;
  font-size: 20px;
  color: #444;
}

@media (max-width: 768px) {
  .soru-secenek {
    font-size: 18px;
  }

  .soru-cevap {
    font-size: 14px;
  }

  .soru-item {
    padding: 10px 0;
  }

  .soru-item.aktif .soru-cevap {
    max-height: 150px;
  }

  .soru-secenek::after,
  .soru-item.aktif .soru-secenek::after {
    font-size: 20px;
  }
}

  .secenek-giris {
    display: grid;
    gap: 20px;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    margin-top: 30px;
  }

  .secenek-kart {
    background-color: #ffffff;
    padding: 20px;
    border-radius: 15px;
    border: 1px solid #e0e0e0;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.07);
    transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
    text-align: center;
    cursor: pointer;
    position: relative;
  }

  .secenek-kart:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.10);
    border-color: rgba(87, 118, 214, 0.30);
  }

  .secenek-kart.active {
    background-color: #ffffff;
    border-color: rgba(87, 118, 214, 0.60);
    box-shadow: 0 0 0 4px rgba(87, 118, 214, 0.14), 0 12px 28px rgba(0, 0, 0, 0.10);
  }

  .icon {
    font-size: 40px;
    color: #5776d6;
    margin-bottom: 10px;
    transition: transform 0.25s ease;
  }

  .secenek-kart:hover .icon {
    transform: scale(1.06);
  }

  .secenek-kart h3 {
    font-size: 18px;
    color: #333;
    margin: 10px 0;
    font-weight: 700;
  }

  .bilgi {
    font-size: 14px;
    color: rgba(15, 23, 42, 0.64);
    display: none;
    margin-top: 15px;
    transition: opacity 0.3s ease;
    line-height: 1.6;
  }

  .secenek-kart.active .bilgi {
    display: block;
    opacity: 1;
  }

  .secenek-kart p {
    font-size: 15px;
    color: rgba(15, 23, 42, 0.62);
    line-height: 1.6;
  }

  @media (max-width: 768px) {
    .secenek-giris {
      grid-template-columns: 1fr;
    }

    .secenek-kart {
      padding: 15px;
    }

    .icon {
      font-size: 35px;
    }

    .secenek-kart h3 {
      font-size: 16px;
    }

    .secenek-kart p {
      font-size: 14px;
    }
  }