.elementor-kit-9{--e-global-color-primary:#0E2940;--e-global-color-secondary:#54595F;--e-global-color-text:#7A7A7A;--e-global-color-accent:#0B1A1F;--e-global-color-ab85c34:#FFFFFF;--e-global-color-06564f8:#000000;--e-global-color-f67f74c:#DAD8D7;--e-global-color-d3c39e6:#0B1A1F;--e-global-color-5ede3bd:#0E2A3E;--e-global-color-2cda31c:#C5A47E;--e-global-color-1a30735:#B4966D;--e-global-color-f603a33:#526B74;--e-global-typography-primary-font-family:"Roboto";--e-global-typography-primary-font-weight:600;--e-global-typography-secondary-font-family:"Roboto Slab";--e-global-typography-secondary-font-weight:400;--e-global-typography-text-font-family:"Roboto";--e-global-typography-text-font-weight:400;--e-global-typography-accent-font-family:"Roboto";--e-global-typography-accent-font-weight:500;}.elementor-kit-9 e-page-transition{background-color:#FFBC7D;}.site-header{background-color:#2187A0;padding-inline-end:0px;padding-inline-start:0px;}.elementor-section.elementor-section-boxed > .elementor-container{max-width:1542px;}.e-con{--container-max-width:1542px;}.elementor-widget:not(:last-child){--kit-widget-spacing:20px;}.elementor-element{--widgets-spacing:20px 20px;--widgets-spacing-row:20px;--widgets-spacing-column:20px;}{}h1.entry-title{display:var(--page-title-display);}.site-header .site-branding{flex-direction:column;align-items:stretch;}.site-header .header-inner{width:0px;max-width:100%;}.site-footer .site-branding{flex-direction:column;align-items:stretch;}@media(max-width:1024px){.elementor-section.elementor-section-boxed > .elementor-container{max-width:1024px;}.e-con{--container-max-width:1024px;}}@media(max-width:767px){.elementor-section.elementor-section-boxed > .elementor-container{max-width:767px;}.e-con{--container-max-width:767px;}}/* Start custom CSS *//* 450 + Yatırımcı da css var*/



/* UZAY ARKAPLANI – Alttan Yukarı Akar */
.uzay-bg {
    position: relative;
    overflow: hidden;
    background: #000;
}

/* Gerçek hareketli yıldız efekti */
.uzay-bg::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 200%;
    background-image: 
        radial-gradient(2px 2px at 10% 20%, #ffffff 70%, transparent 100%),
        radial-gradient(1px 1px at 40% 80%, #ffffff 70%, transparent 100%),
        radial-gradient(2px 2px at 70% 30%, #ffffff 70%, transparent 100%),
        radial-gradient(1px 1px at 80% 60%, #ffffff 70%, transparent 100%),
        radial-gradient(1px 1px at 20% 90%, #ffffff 70%, transparent 100%),
        radial-gradient(2px 2px at 50% 50%, #ffffff 70%, transparent 100%);

    background-repeat: repeat;
    animation: stars-move 18s linear infinite;
    opacity: 0.6;
}

/* Yıldızların yukarı akma animasyonu */
@keyframes stars-move {
    0% {
        transform: translateY(0);
    }
    100% {
        transform: translateY(-50%);
    }
}


html, body {
    overflow-x: hidden !important;
}




/* Hover kutusu */
.my-hover-box {
    position: relative;
    overflow: hidden;
}

/* Arka plan zoom katmanı – background-image’ı kopyalar */
.my-hover-box::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: inherit;
    background-size: cover; /* KAPLA */
    background-position: center;
    background-repeat: no-repeat;

    transform: scale(1);
    transition: transform 0.6s ease;
    z-index: 0;
}

/* Hover olunca sadece arkaplan büyür */
.my-hover-box:hover::before {
    transform: scale(1.15); /* Zoom seviyesi */
}

/* Kararma katmanı */
.my-hover-box::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.5);
    transition: background 0.4s ease;
    z-index: 1;
}

/* Hover karartma */
.my-hover-box:hover::after {
    background: rgba(0,0,0,0.75);
}

/* Yazılar önde kalsın */
.my-hover-box .elementor-widget-container,
.my-hover-box .elementor-heading-title,
.my-hover-box .elementor-text-editor {
    position: relative;
    z-index: 2;
}



/* Form container */
.my-contact-form {
    max-width: 900px;
    margin: 0 auto;
}

/* Elementor field gruplarını yatay hizalama */
.my-contact-form .elementor-form-fields-wrapper {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}

/* İlk 3 input yan yana */
.my-contact-form .elementor-field-group:nth-child(1),
.my-contact-form .elementor-field-group:nth-child(2),
.my-contact-form .elementor-field-group:nth-child(3) {
    flex: 1 1 calc(33.333% - 20px) !important;
}

/* Mesaj alanı tam genişlik */
.my-contact-form .elementor-field-group:nth-child(4) {
    flex: 1 1 100% !important;
}

/* KVKK + gönder tam genişlik */
.my-contact-form .elementor-field-group:nth-child(5),
.my-contact-form .elementor-field-group.elementor-field-type-submit {
    flex: 1 1 100% !important;
}

/* Gönder butonunu sağa al */
.my-contact-form .elementor-field-group.elementor-field-type-submit {
    text-align: right !important;
}

/* Input ve textarea tasarımları */
.my-contact-form input,
.my-contact-form textarea {
    background: #ffffff !important;
    border: none !important;
    padding: 14px 20px !important;
    font-size: 16px !important;
    width: 100% !important;
    border-radius: 0 !important;
    color: #000 !important;
}

/* Textarea boyutu */
.my-contact-form textarea {
    height: 150px !important;
}

/* Placeholderlar */
.my-contact-form ::placeholder {
    color: #777 !important;
}

/* Checkbox düzeltmesi */
.my-contact-form input[type="checkbox"] {
    width: 18px !important;
    height: 18px !important;
    margin-right: 8px;
}

/* Checkbox yazı rengi */
.my-contact-form label {
    color: #fff !important;
    font-size: 14px !important;
}

/* Gönder butonu metin */
.my-contact-form button,
.my-contact-form input[type="submit"] {
    background: transparent !important;
    border: 2px solid #ffffff !important;
    color: #ffffff !important;
    font-weight: 600 !important;
    padding: 10px 32px !important;
    border-radius: 0 !important;
    transition: 0.3s ease !important;
}

/* Hover */
.my-contact-form button:hover,
.my-contact-form input[type="submit"]:hover {
    background: #c5a47e !important;
    border-color: #c5a47e !important;
    color: #0e2a3c !important;
}





/* =========================
   Footer sosyal ikon hover
   target: my-footer-icons
   ========================= */

/* 1) Container ayarı (zaten verdin ama garanti) */
.my-footer-icons {
  display: flex !important;
  gap: 25px !important;
  align-items: center !important;
}

/* 2) Link / item temel stili */
.my-footer-icons a,
.my-footer-icons .item,
.my-footer-icons .w-socials-item-link {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  color: #ffffff !important;               /* default renk */
  text-decoration: none !important;
  transition: color .25s ease, transform .18s ease !important;
}

/* 3) FontAwesome <i> (ve :before) hedefle */
.my-footer-icons i,
.my-footer-icons i:before,
.my-footer-icons .fab,
.my-footer-icons .fab:before {
  color: inherit !important;
  font-size: 18px !important;
  line-height: 1 !important;
  transition: color .25s ease !important;
}

/* 4) Elementor / theme SVG ikonları - fill = currentColor yap */
.my-footer-icons svg,
.my-footer-icons svg * {
  width: 20px !important;
  height: 20px !important;
  fill: currentColor !important;   /* SVG rengini color üzerinden kontrol eder */
  stroke: currentColor !important;
  transition: fill .25s ease, transform .18s ease !important;
}

/* 5) Hover: ikon rengini #c5a47e yap */
.my-footer-icons a:hover,
.my-footer-icons .item:hover,
.my-footer-icons .w-socials-item-link:hover {
  color: #c5a47e !important;
}

/* 6) İstersen hover ufak büyüme efekti */
.my-footer-icons a:hover svg,
.my-footer-icons a:hover i {
  transform: translateY(-2px) scale(1.05) !important;
}

/* 7) Eğer widget pseudo-element ile ikon koyuyorsa (örn .w-socials-item-link::before) */
.my-footer-icons .w-socials-item-link::before,
.my-footer-icons .w-socials-item-link::after {
  color: inherit !important;
  fill: currentColor !important;
}

/* 8) (Opsiyonel) hover yazı/label görünümü varsa */
.my-footer-icons .item span {
  opacity: 0;
  visibility: hidden;
  transform: translateX(-8px);
  transition: all .25s ease;
}
.my-footer-icons .item:hover span {
  opacity: 1;
  visibility: visible;
  transform: translateX(0);
}

/* 9) Güçlü öncelik gerekiyorsa - hedefi daha spesifik yap */
section .my-footer-icons a:hover,
footer .my-footer-icons a:hover,
.widget .my-footer-icons a:hover {
  color: #c5a47e !important;
}


body #off-canvas-6377f18 .e-off-canvas__main {
    transition: transform 0.2s ease-in-out !important;
}

body #off-canvas-6377f18 .e-off-canvas__overlay {
    transition: opacity 0.2s ease-in-out !important;
}




  /* AVM OFİS GİBİ SAYFALARDAKİ KESİN KONUMLU KUTU */

@media (max-width: 767px) {
    /* Sağdaki sabit konteyner (kesin konumlu) */
    .metafor-kutu {
        width: 90% !important;
        left: 5% !important;
        top: 120px !important;
        padding: 20px !important;
    }

    /* Başlık */
    .metafor-kutu h1,
    .metafor-kutu .main-heading {
        font-size: 24px !important;
        line-height: 1.2 !important;
        text-align: center !important;
    }

    /* Paragraflar */
    .metafor-kutu p {
        font-size: 14px !important;
        line-height: 1.5 !important;
        text-align: center !important;
    }

    /* Listeler */
    .metafor-kutu ul li {
        font-size: 14px !important;
        line-height: 1.5 !important;
    }
}


/* TABLET (768px – 1024px) */
@media (min-width: 768px) and (max-width: 1024px) {

    .metafor-kutu {
        width: 70% !important;
        left: 15% !important;
        top: 150px !important;
        padding: 30px !important;
    }

    /* Başlık */
    .metafor-kutu h1,
    .metafor-kutu .main-heading {
        font-size: 34px !important;
        line-height: 1.2 !important;
        text-align: left !important;
    }

    /* Paragraflar */
    .metafor-kutu p {
        font-size: 16px !important;
        line-height: 1.6 !important;
        text-align: left !important;
    }

    /* Listeler */
    .metafor-kutu ul li {
        font-size: 16px !important;
        line-height: 1.5 !important;
    }
}






/* ===============================
   MİRSU ALANI
================================ */

.btn-animated-arrow{
  position: relative !important;
  overflow: hidden !important;

  border: 1px solid #526B74 !important;
  transition: box-shadow .35s ease !important;
}

/* === OK İKONU (HER ZAMAN GÖRÜNÜR) === */
.btn-animated-arrow .elementor-button-icon{
  position: relative !important;
  margin-left: 8px !important;

  color: #B4966D !important;
  fill: #B4966D !important;

  transform: translateX(6px) !important; /* başlangıç konumu */
  transition: transform .35s ease !important;
}

/* Hover → ikon sağdan içeri (sola doğru) gelir */
.btn-animated-arrow:hover .elementor-button-icon{
  transform: translateX(0) !important;
}

/* Hover çıkışı → ikon soldan geri gidiyormuş hissi */
.btn-animated-arrow:not(:hover) .elementor-button-icon{
  transform: translateX(6px) !important;
}

/* === KENARLARDAN MERKEZE BİRLEŞEN ARKA PLAN === */
.btn-animated-arrow::before,
.btn-animated-arrow::after{
  content: "" !important;
  position: absolute !important;
  top: 0 !important;
  height: 100% !important;
  width: 0 !important;

  background-color: #526B74 !important;
  transition: width .35s ease !important;
  z-index: 0 !important;
}

/* Sol */
.btn-animated-arrow::before{ left: 0 !important; }
/* Sağ */
.btn-animated-arrow::after{ right: 0 !important; }

/* Hover → iki yandan ortaya */
.btn-animated-arrow:hover::before,
.btn-animated-arrow:hover::after{
  width: 50% !important;
}

/* Hover gölge */
.btn-animated-arrow:hover{
  box-shadow: 0 10px 30px rgba(82,107,116,.35) !important;
}

/* Yazı ve ikon üstte kalsın */
.btn-animated-arrow span,
.btn-animated-arrow i{
  position: relative !important;
  z-index: 1 !important;
}/* End custom CSS */