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

html,body{
  margin:0!important;
  padding:0!important;
  overflow-x:hidden!important;
  scroll-behavior:smooth;
}

body{
  font-family:'Montserrat',sans-serif;
  background:#fff;
  color:#242424;
}

.site-header{
  position:fixed;
  top:0;
  left:0;
  width:100%;
  z-index:9999;
  background:rgba(255,255,255,.92);
  backdrop-filter:blur(16px);
  border-bottom:1px solid rgba(154,124,171,.14);
}

.site-header-inner{
  max-width:1600px;
  margin:0 auto;
  padding:12px 18px;
  min-height:110px;
  display:flex;
  align-items:center;
  justify-content:flex-start;
  gap:50px;
}
.site-logo{
  text-decoration:none!important;
  color:#4b1f73;
  font-size:28px;
  font-weight:800;
  letter-spacing:-.5px;
}

.site-logo img{
    height:95px;
    width:auto;
    display:block;
}

.site-nav{
  display:flex;
  align-items:center;
  gap:38px;
  width:100%;
}

.site-nav a{
  color:#222;
  text-decoration:none!important;
  font-size:14px;
  font-weight:600;
  transition:.25s ease;
}

.site-nav a:hover,
.site-nav a.active{
  color:#7b4f92;
}

.site-cta{
  background:#9a7cab;
  color:#fff!important;
  padding:12px 20px;
  border-radius:999px;
  box-shadow:0 10px 24px rgba(154,124,171,.25);
  margin-left:auto;
}

.menu-toggle{
  display:none;
  border:none;
  background:#9a7cab;
  color:#fff;
  width:42px;
  height:42px;
  border-radius:50%;
  font-size:20px;
}

.elemor-massage-home{
  width:100vw;
  margin-left:calc(50% - 50vw);
  background:
    radial-gradient(circle at top right, rgba(154,124,171,.08), transparent 35%),
    radial-gradient(circle at bottom left, rgba(154,124,171,.06), transparent 40%),
    linear-gradient(180deg,#ffffff 0%,#fbf9fd 45%,#f5f0f8 100%);
  color:#242424;
}

.elemor-massage-home *{
  box-sizing:border-box;
}

.elemor-wrap{
  max-width:1180px;
  margin:0 auto;
  padding:0 22px;
}

/* HERO */

.elemor-hero-slider{
  position:relative;
  width:100%;
  height:100vh;
  overflow:hidden;
  background:#000;
}

.elemor-slide{
  position:absolute;
  inset:0;
  opacity:0;
  visibility:hidden;
  transition:1.4s ease;
}

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

.elemor-slide img{
  width:100%;
  height:100%;
  object-fit:cover;
  display:block;
  transform:scale(1.05);
  animation:elemorZoom 12s linear infinite;
}

@keyframes elemorZoom{
  0%{transform:scale(1.05);}
  100%{transform:scale(1.12);}
}

.elemor-slide-overlay{
  position:absolute;
  inset:0;
  background:linear-gradient(
    to right,
    rgba(0,0,0,.78) 0%,
    rgba(0,0,0,.48) 45%,
    rgba(0,0,0,.22) 100%
  );
}

.elemor-slide-content{
  position:absolute;
  z-index:5;
  left:8%;
  top:50%;
  transform:translateY(-50%);
  width:700px;
  min-height:430px;
  display:flex;
  flex-direction:column;
  justify-content:center;
  color:#fff;
}

.elemor-slide-content span{
  display:block;
  margin-bottom:18px;
  letter-spacing:4px;
  text-transform:uppercase;
  font-size:13px;
  font-weight:400;
  color:#d8c0e6;
}

.elemor-slide-content h1{
  font-size:82px;
  line-height:.98;
  margin:0 0 26px;
  font-weight:600;
  letter-spacing:-3px;
  color:#fff;
  text-shadow:0 10px 35px rgba(0,0,0,.38);
}

.elemor-slide-content p{
  font-size:19px;
  line-height:1.9;
  color:rgba(255,255,255,.88);
  margin:0 0 38px;
  max-width:560px;
  text-shadow:0 4px 18px rgba(0,0,0,.28);
}

.elemor-slide-buttons{
  display:flex;
  gap:14px;
  flex-wrap:wrap;
}

.elemor-slide-btn{
  min-height:56px;
  padding:0 32px;
  border-radius:999px;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  text-decoration:none!important;
  font-weight:700;
  transition:.3s ease;
  font-size:15px;
}

.elemor-slide-btn.primary{
  background:#9a7cab;
  color:#fff!important;
  box-shadow:0 12px 30px rgba(154,124,171,.32);
}

.elemor-slide-btn.secondary{
  background:rgba(255,255,255,.10);
  backdrop-filter:blur(12px);
  border:1px solid rgba(255,255,255,.18);
  color:#fff!important;
}

.elemor-slide-btn:hover{
  transform:translateY(-3px);
}

.elemor-slider-arrow{
  position:absolute;
  top:50%;
  transform:translateY(-50%);
  z-index:10;
  width:56px;
  height:56px;
  border:none;
  border-radius:50%;
  background:rgba(255,255,255,.10);
  backdrop-filter:blur(12px);
  color:#fff;
  cursor:pointer;
  transition:.25s ease;
  font-size:22px;
}

.elemor-slider-arrow:hover{
  background:#9a7cab;
}

.elemor-slider-arrow.prev{
  left:28px;
}

.elemor-slider-arrow.next{
  right:28px;
}

.elemor-slider-dots{
  position:absolute;
  left:50%;
  bottom:36px;
  transform:translateX(-50%);
  display:flex;
  gap:10px;
  z-index:12;
}

.elemor-slider-dots span{
  width:10px;
  height:10px;
  border-radius:50%;
  background:rgba(255,255,255,.38);
  transition:.3s ease;
  cursor:pointer;
}

.elemor-slider-dots span.active{
  width:34px;
  border-radius:999px;
  background:#9a7cab;
}

/* INTRO */

.elemor-intro{
  padding:90px 0 55px;
}

.elemor-intro-grid{
  display:grid;
  grid-template-columns:.9fr 1.1fr;
  gap:60px;
  align-items:start;
}

.elemor-intro h2{
  font-size:42px;
  line-height:1.16;
  letter-spacing:-1px;
  margin:0;
  color:#202020;
}

.elemor-intro p{
  margin:0;
  color:#666;
  font-size:17px;
  line-height:1.9;
}

/* SERVICES */

.elemor-services{
  padding:30px 0 90px;
}

.elemor-service-list{
  display:grid;
  gap:20px;
}

.elemor-service{
  display:grid;
  grid-template-columns:250px 1fr 160px;
  gap:30px;
  align-items:center;
  background:#fff;
  border:1px solid rgba(154,124,171,.15);
  border-radius:30px;
  padding:18px;
  box-shadow:0 18px 45px rgba(113,81,138,.08);
  transition:.3s ease;
}

.elemor-service:hover{
  transform:translateY(-6px);
  box-shadow:0 24px 55px rgba(113,81,138,.14);
}

.elemor-service img{
  width:100%;
  height:180px;
  object-fit:cover;
  border-radius:24px;
  display:block;
}

.elemor-service h3{
  margin:0 0 10px;
  color:#202020;
  font-size:28px;
}

.elemor-service p{
  margin:0;
  color:#666;
  line-height:1.8;
}

.elemor-small-btn{
  min-height:46px;
  padding:0 20px;
  border-radius:999px;
  background:#f2e8f6;
  color:#8f70a1!important;
  text-decoration:none!important;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  font-weight:700;
  font-size:14px;
  transition:.25s ease;
}

.elemor-small-btn:hover{
  background:#9a7cab;
  color:#fff!important;
}

/* DETAIL */

.elemor-detail{
  padding:95px 0;
  background:linear-gradient(180deg,#f8f5fb 0%,#f1ebf7 100%);
}

.elemor-detail-grid{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:60px;
  align-items:center;
}

.elemor-detail img{
  width:100%;
  height:560px;
  object-fit:cover;
  border-radius:34px;
  display:block;
  box-shadow:0 22px 55px rgba(113,81,138,.13);
}

.elemor-detail h2{
  font-size:44px;
  line-height:1.12;
  margin:0 0 22px;
  color:#202020;
}

.elemor-detail p{
  color:#666;
  font-size:17px;
  line-height:1.9;
  margin:0 0 24px;
}

.elemor-list{
  display:grid;
  gap:12px;
  margin-top:28px;
}

.elemor-list div{
  background:rgba(255,255,255,.78);
  border:1px solid rgba(154,124,171,.14);
  border-radius:16px;
  padding:16px 18px;
  color:#555;
}

/* PREMIUM CTA */

.elemor-cta{
    position:relative;
    overflow:hidden;
    padding:120px 20px;
    text-align:center;
    color:#fff;

    background:
    radial-gradient(circle at 20% 50%, rgba(255,255,255,.08), transparent 30%),
    radial-gradient(circle at 85% 30%, rgba(255,255,255,.08), transparent 30%),
    linear-gradient(135deg,#6d4d87 0%,#8d6aa6 50%,#b090c3 100%);
}

.elemor-cta h2{
    font-size:54px;
    line-height:1.1;
    margin:0 0 24px;
    font-weight:600;
    color:#fff;
}

.elemor-cta p{
    max-width:760px;
    margin:0 auto;
    font-size:18px;
    line-height:1.9;
    color:rgba(255,255,255,.92);
}

.elemor-divider{
    margin:20px auto;
    display:flex;
    align-items:center;
    justify-content:center;
    gap:20px;
}

.elemor-divider span{
    width:90px;
    height:1px;
    background:rgba(255,255,255,.35);
}

.elemor-divider i{
    font-style:normal;
    color:rgba(255,255,255,.7);
    font-size:28px;
}

.elemor-cta-buttons{
    display:flex;
    justify-content:center;
    gap:22px;
    flex-wrap:wrap;
}

.elemor-cta-phone,
.elemor-cta-whatsapp{
    min-width:280px;
    height:72px;
    border-radius:999px;
    display:inline-flex;
    align-items:center;
    justify-content:center;
    gap:14px;
    text-decoration:none!important;
    font-size:22px;
    font-weight:700;
    transition:.35s ease;
}

.elemor-cta-phone{
    background:rgba(255,255,255,.15);
    border:1px solid rgba(255,255,255,.25);
    color:#fff!important;
    box-shadow:0 20px 45px rgba(0,0,0,.15);
}

.elemor-cta-phone:hover{
    transform:translateY(-4px);
    background:rgba(255,255,255,.22);
}

.elemor-cta-phone i{
    width:42px;
    height:42px;
    background:#fff;
    color:#7d5b96;
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
}

.elemor-cta-whatsapp{
    background:transparent;
    border:1px solid rgba(255,255,255,.45);
    color:#fff!important;
}

.elemor-cta-whatsapp:hover{
    background:rgba(255,255,255,.12);
    transform:translateY(-4px);
}

@media(max-width:767px){

    .elemor-cta{
        padding:80px 20px;
    }

    .elemor-cta h2{
        font-size:38px;
    }

    .elemor-cta p{
        font-size:16px;
    }

    .elemor-cta-phone,
    .elemor-cta-whatsapp{
        width:100%;
        min-width:auto;
        font-size:18px;
    }

    .elemor-divider span{
        width:50px;
    }
}

/* PREMIUM FOOTER */

.site-footer{
  position:relative;
  overflow:hidden;
  background:
    radial-gradient(circle at 92% 10%, rgba(176,144,195,.14), transparent 26%),
    radial-gradient(circle at 8% 85%, rgba(154,124,171,.10), transparent 28%),
    linear-gradient(135deg,#13091d 0%,#24112f 48%,#35194b 100%);
  color:#fff;
  padding:90px 24px 34px;
}

.site-footer::before{
  content:"";
  position:absolute;
  right:-120px;
  bottom:40px;
  width:420px;
  height:420px;
  border:2px solid rgba(255,255,255,.045);
  border-radius:50%;
  transform:rotate(25deg);
}

.site-footer-inner{
  max-width:1280px;
  margin:0 auto;
  display:grid;
  grid-template-columns:1.25fr 1fr 1fr 1.15fr;
  gap:58px;
  position:relative;
  z-index:2;
}

.footer-col{
  display:flex;
  flex-direction:column;
}

.footer-logo{
  display:inline-flex;
  margin-bottom:24px;
}

.footer-logo img{
  width:180px;
  max-width:100%;
  height:auto;
  display:block;
}

.footer-brand p{
  color:rgba(255,255,255,.76);
  line-height:1.9;
  font-size:15px;
  max-width:310px;
  margin:0 0 28px;
}

.footer-social{
  display:flex;
  gap:12px;
}

.footer-social a{
  width:42px;
  height:42px;
  border-radius:50%;
  background:rgba(255,255,255,.08);
  border:1px solid rgba(255,255,255,.10);
  color:#f0dff9;
  display:flex;
  align-items:center;
  justify-content:center;
  text-decoration:none;
  font-weight:600;
  transition:.25s ease;
}

.footer-social a:hover{
  background:#9a7cab;
  color:#fff;
  transform:translateY(-3px);
}

.footer-col h4{
  color:#d8b7ea;
  font-size:15px;
  letter-spacing:2.5px;
  text-transform:uppercase;
  font-weight:600;
  margin:0 0 28px;
  position:relative;
}

.footer-col h4::after{
  content:"";
  display:block;
  width:38px;
  height:3px;
  border-radius:999px;
  background:#c996e8;
  margin-top:16px;
}

.footer-col > a{
  color:rgba(255,255,255,.84);
  text-decoration:none!important;
  font-size:15px;
  margin-bottom:16px;
  transition:.25s ease;
}

.footer-col > a:hover{
  color:#d8b7ea;
  transform:translateX(5px);
}

.footer-contact a,
.footer-contact div{
  color:rgba(255,255,255,.84);
  text-decoration:none!important;
  display:flex;
  align-items:center;
  gap:14px;
  margin-bottom:18px;
  line-height:1.5;
}

.footer-contact span{
  width:42px;
  height:42px;
  min-width:42px;
  border-radius:50%;
  background:rgba(154,124,171,.22);
  color:#f2dfff;
  display:flex;
  align-items:center;
  justify-content:center;
  font-size:16px;
}

.footer-bottom{
  max-width:1280px;
  margin:70px auto 0;
  padding-top:30px;
  border-top:1px solid rgba(255,255,255,.11);
  text-align:center;
  color:rgba(255,255,255,.72);
  position:relative;
  z-index:2;
  font-size:14px;
}

.footer-bottom span{
  color:#d8b7ea;
  font-weight:600;
  letter-spacing:.5px;
}

.footer-bottom strong{
  font-weight:600;
  margin-left:8px;
}

@media(max-width:1024px){
  .site-footer-inner{
    grid-template-columns:1fr 1fr;
    gap:42px;
  }
}

@media(max-width:767px){
  .site-footer{
    padding:70px 20px 30px;
  }

  .site-footer-inner{
    grid-template-columns:1fr;
    gap:36px;
  }

  .footer-logo img{
    width:150px;
  }

  .footer-bottom{
    margin-top:45px;
    line-height:1.8;
  }

  .footer-bottom strong{
    display:block;
    margin-left:0;
  }
}
/* MOBILE */

@media(max-width:1024px){
  .elemor-slide-content{
    width:580px;
    min-height:auto;
  }

  .elemor-slide-content h1{
    font-size:60px;
  }

  .elemor-intro-grid,
  .elemor-detail-grid{
    grid-template-columns:1fr;
    gap:34px;
  }

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

@media(max-width:767px){

  .site-header-inner{
    padding:14px 18px;
    justify-content:space-between;
    gap:0;
  }

  .site-logo{
    margin-right:auto;
  }

  .menu-toggle{
    display:flex;
    align-items:center;
    justify-content:center;
    margin-left:auto;
  }

  .site-nav{
    position:absolute;
    top:70px;
    left:18px;
    right:18px;
    display:none;
    flex-direction:column;
    align-items:flex-start;
    gap:16px;
    background:#fff;
    border:1px solid rgba(154,124,171,.14);
    border-radius:22px;
    padding:22px;
    box-shadow:0 20px 45px rgba(0,0,0,.12);
  }

  .site-nav.active{
    display:flex;
  }

  .site-nav a{
    width:100%;
  }

  .site-cta{
    text-align:center;
  }

  .elemor-hero-slider{
    height:88vh;
  }

  .elemor-slide-content{
    left:24px;
    right:24px;
    width:auto;
    min-height:auto;
  }

  .elemor-slide-content h1{
    font-size:44px;
    letter-spacing:-1px;
  }

  .elemor-slide-content p{
    font-size:16px;
    line-height:1.8;
  }

  .elemor-slide-buttons{
    flex-direction:column;
  }

  .elemor-slide-btn{
    width:100%;
  }

  .elemor-slider-arrow{
    display:none;
  }

  .elemor-intro{
    padding:64px 0 30px;
  }

  .elemor-intro h2,
  .elemor-detail h2,
  .elemor-cta h2{
    font-size:32px;
  }

  .elemor-service{
    grid-template-columns:1fr;
    gap:18px;
    padding:14px;
  }

  .elemor-service img{
    height:230px;
  }

  .elemor-detail{
    padding:70px 0;
  }

  .elemor-detail img{
    height:360px;
  }

  .site-footer-inner{
    flex-direction:column;
  }
}

/* HAKKIMIZDA SAYFASI */

.elemor-about{
  width:100vw;
  margin-left:calc(50% - 50vw);
  background:#fbf9fd;
  color:#222;
}

.elemor-about-hero{
  padding:150px 20px 80px;
  background:
    radial-gradient(circle at top right, rgba(154,124,171,.14), transparent 35%),
    linear-gradient(180deg,#ffffff 0%,#f6f0fa 100%);
  text-align:center;
}

.elemor-about-hero span{
  display:block;
  color:#9a7cab;
  font-size:12px;
  letter-spacing:3px;
  text-transform:uppercase;
  font-weight:800;
  margin-bottom:16px;
}

.elemor-about-hero h1{
  font-size:56px;
  line-height:1.1;
  margin:0 0 18px;
  color:#23112f;
  font-weight:600;
}

.elemor-about-hero p{
  max-width:720px;
  margin:0 auto;
  color:#6c6371;
  line-height:1.85;
  font-size:17px;
}

.elemor-about-main{
  padding:95px 0;
  background:#fff;
}

.elemor-about-grid{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:64px;
  align-items:center;
}

.elemor-about-image img{
  width:100%;
  height:520px;
  object-fit:cover;
  border-radius:34px;
  display:block;
  box-shadow:0 24px 60px rgba(113,81,138,.14);
}

.elemor-about-text small{
  display:block;
  color:#9a7cab;
  font-size:12px;
  letter-spacing:3px;
  text-transform:uppercase;
  font-weight:800;
  margin-bottom:18px;
}

.elemor-about-text h2{
  font-size:42px;
  line-height:1.16;
  margin:0 0 24px;
  color:#23112f;
  font-weight:600;
  letter-spacing:-1px;
}

.elemor-about-text p{
  color:#665f6b;
  line-height:1.9;
  font-size:16px;
  margin:0 0 18px;
}

.elemor-values{
  padding:95px 0;
  background:#fbf9fd;
}

.elemor-values-head{
  max-width:720px;
  margin:0 auto 48px;
  text-align:center;
}

.elemor-values-head h2{
  font-size:40px;
  line-height:1.2;
  margin:0 0 14px;
  color:#23112f;
  font-weight:600;
}

.elemor-values-head p{
  color:#665f6b;
  line-height:1.8;
  font-size:16px;
}

.elemor-value-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:24px;
}

.elemor-value-card{
  background:#fff;
  border:1px solid rgba(154,124,171,.14);
  border-radius:30px;
  padding:34px;
  box-shadow:0 18px 45px rgba(113,81,138,.08);
  transition:.3s ease;
}

.elemor-value-card:hover{
  transform:translateY(-6px);
  box-shadow:0 26px 60px rgba(113,81,138,.13);
}

.elemor-value-card span{
  display:inline-flex;
  width:42px;
  height:42px;
  align-items:center;
  justify-content:center;
  border-radius:50%;
  background:#f2e8f6;
  color:#9a7cab;
  font-weight:800;
  margin-bottom:22px;
}

.elemor-value-card h3{
  font-size:22px;
  margin:0 0 12px;
  color:#23112f;
  font-weight:600;
}

.elemor-value-card p{
  color:#665f6b;
  line-height:1.75;
  margin:0;
}

.elemor-process{
  padding:100px 0;
  background:linear-gradient(180deg,#f6f0fa 0%,#ffffff 100%);
}

.elemor-process-grid{
  display:grid;
  grid-template-columns:.85fr 1.15fr;
  gap:70px;
  align-items:start;
}

.elemor-process-title h2{
  font-size:42px;
  line-height:1.18;
  margin:0;
  color:#23112f;
  font-weight:600;
  letter-spacing:-1px;
}

.elemor-process-list{
  display:grid;
  gap:16px;
}

.elemor-process-item{
  background:#fff;
  border:1px solid rgba(154,124,171,.14);
  border-radius:24px;
  padding:24px 26px;
  box-shadow:0 16px 38px rgba(113,81,138,.08);
}

.elemor-process-item strong{
  display:block;
  color:#23112f;
  margin-bottom:8px;
  font-size:18px;
}

.elemor-process-item p{
  margin:0;
  color:#665f6b;
  line-height:1.75;
}

.elemor-about-cta{
  padding:90px 20px;
  text-align:center;
  background:linear-gradient(135deg,#8d6aa6 0%,#9a7cab 50%,#b090c3 100%);
  color:#fff;
}

.elemor-about-cta h2{
  font-size:40px;
  margin:0 0 16px;
  color:#fff;
  font-weight:800;
}

.elemor-about-cta p{
  max-width:640px;
  margin:0 auto 30px;
  color:rgba(255,255,255,.9);
  line-height:1.8;
}

.elemor-btn{
  min-height:54px;
  padding:0 30px;
  border-radius:999px;
  background:#fff;
  color:#6d3d86!important;
  text-decoration:none!important;
  font-weight:800;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  transition:.25s ease;
  box-shadow:0 12px 28px rgba(0,0,0,.14);
}

.elemor-btn:hover{
  transform:translateY(-3px);
  background:#f8f4ff;
}

@media(max-width:900px){
  .elemor-about-grid,
  .elemor-process-grid{
    grid-template-columns:1fr;
    gap:38px;
  }

  .elemor-value-grid{
    grid-template-columns:1fr;
  }
}

@media(max-width:767px){
  .elemor-about-hero{
    padding:115px 18px 60px;
  }

  .elemor-about-hero h1{
    font-size:38px;
  }

  .elemor-about-main,
  .elemor-values,
  .elemor-process{
    padding:70px 0;
  }

  .elemor-about-image img{
    height:340px;
  }

  .elemor-about-text h2,
  .elemor-values-head h2,
  .elemor-process-title h2,
  .elemor-about-cta h2{
    font-size:30px;
  }

  .elemor-value-card{
    padding:28px;
  }
}

/* MENU PAGE */

.elemor-menu-page{
    background:
      radial-gradient(circle at top right, rgba(154,124,171,.08), transparent 35%),
      linear-gradient(180deg,#ffffff 0%,#f8f4fb 100%);
    padding:140px 20px 100px;
    min-height:100vh;
}

.elemor-menu-title{
    max-width:700px;
    margin:0 auto 60px;
    text-align:center;
}

.elemor-menu-title span{
    display:block;
    color:#9a7cab;
    letter-spacing:3px;
    text-transform:uppercase;
    font-size:12px;
    font-weight:800;
    margin-bottom:14px;
}

.elemor-menu-title h1{
    color:#23112f;
    font-size:64px;
    line-height:1.05;
    margin:0;
    font-weight:600;
    letter-spacing:-2px;
}

.elemor-menu-title p{
    margin:22px auto 0;
    max-width:620px;
    color:#665f6b;
    font-size:17px;
    line-height:1.9;
}

.elemor-menu-wrapper{
    max-width:1200px;
    margin:auto;
}

.elemor-menu-frame{
    background:#fff;
    padding:24px;
    border-radius:36px;
    box-shadow:0 25px 70px rgba(113,81,138,.12);
    border:1px solid rgba(154,124,171,.12);
    transition:.35s ease;
}

.elemor-menu-frame:hover{
    transform:translateY(-6px);
    box-shadow:0 35px 90px rgba(113,81,138,.16);
}

.elemor-menu-frame img{
    width:100%;
    display:block;
    border-radius:24px;
}

@media(max-width:767px){

    .elemor-menu-page{
        padding:110px 16px 70px;
    }

    .elemor-menu-title{
        margin-bottom:35px;
    }

    .elemor-menu-title h1{
        font-size:38px;
        letter-spacing:-1px;
    }

    .elemor-menu-title p{
        font-size:15px;
    }

    .elemor-menu-frame{
        padding:12px;
        border-radius:22px;
    }

    .elemor-menu-frame img{
        border-radius:14px;
    }
}

/* ILETISIM SAYFASI */

.elemor-contact{
  background:
    radial-gradient(circle at top right, rgba(154,124,171,.08), transparent 35%),
    linear-gradient(180deg,#ffffff 0%,#f8f4fb 100%);
}

.elemor-contact-hero{
  padding:140px 0 90px;
}

.elemor-contact-grid{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:70px;
  align-items:center;
}

.elemor-contact-left span{
  color:#9a7cab;
  text-transform:uppercase;
  letter-spacing:3px;
  font-size:12px;
  font-weight:800;
}

.elemor-contact-left h1{
  font-size:58px;
  line-height:1.08;
  margin:18px 0 20px;
  color:#23112f;
  font-weight:600;
}

.elemor-contact-left p{
  color:#665f6b;
  line-height:1.9;
  font-size:17px;
}

.elemor-contact-visual{
  position:relative;
}

.elemor-contact-visual img{
  width:100%;
  height:620px;
  object-fit:cover;
  border-radius:34px;
  display:block;
  box-shadow:0 24px 60px rgba(113,81,138,.14);
}

.ec-floating{
  position:absolute;
  background:#fff;
  border-radius:18px;
  padding:16px 20px;
  box-shadow:0 18px 40px rgba(0,0,0,.12);
}

.ec-floating.one{
  top:25px;
  left:-20px;
}

.ec-floating.two{
  bottom:25px;
  right:-20px;
}

.ec-floating small{
  display:block;
  color:#888;
  margin-bottom:5px;
}

.ec-floating strong{
  color:#23112f;
}

.elemor-contact-actions{
  padding:0 0 90px;
}

.elemor-actions-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:20px;
}

.elemor-action{
  background:#fff;
  border-radius:28px;
  padding:30px;
  text-decoration:none;
  display:flex;
  justify-content:space-between;
  align-items:center;
  border:1px solid rgba(154,124,171,.12);
  box-shadow:0 18px 45px rgba(113,81,138,.08);
}

.elemor-action-label{
  display:block;
  color:#9a7cab;
  margin-bottom:8px;
  font-size:13px;
}

.elemor-action-title{
  color:#23112f;
  font-size:22px;
}

.elemor-action-icon{
  font-size:26px;
  color:#9a7cab;
}

.elemor-contact-form-area{
  padding:0 0 90px;
}

.elemor-form-grid{
  display:grid;
  grid-template-columns:.9fr 1.1fr;
  gap:60px;
  align-items:start;
}

.elemor-form-side h2{
  font-size:42px;
  line-height:1.15;
  color:#23112f;
  margin:0 0 18px;
}

.elemor-form-side p{
  color:#665f6b;
  line-height:1.9;
}

.elemor-form{
  background:#fff;
  border-radius:34px;
  padding:36px;
  border:1px solid rgba(154,124,171,.12);
  box-shadow:0 18px 45px rgba(113,81,138,.08);
}

.elemor-row{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:16px;
  margin-bottom:16px;
}

.elemor-field{
  width:100%;
  border:1px solid rgba(154,124,171,.18);
  border-radius:18px;
  padding:16px;
  font-family:inherit;
}

textarea.elemor-field{
  min-height:160px;
  resize:none;
  margin-bottom:16px;
}

.elemor-submit{
  border:none;
  background:#9a7cab;
  color:#fff;
  height:54px;
  padding:0 28px;
  border-radius:999px;
  font-weight:700;
  cursor:pointer;
}

.elemor-map{
  padding-bottom:100px;
}

.elemor-map-box{
  overflow:hidden;
  border-radius:34px;
  box-shadow:0 18px 45px rgba(113,81,138,.08);
}

.elemor-map-box iframe{
  width:100%;
  height:600px;
  border:none;
}

@media(max-width:900px){

  .elemor-contact-grid,
  .elemor-form-grid,
  .elemor-actions-grid{
    grid-template-columns:1fr;
  }

  .elemor-row{
    grid-template-columns:1fr;
  }

  .elemor-contact-left h1{
    font-size:38px;
  }

  .elemor-contact-visual img{
    height:380px;
  }

  .ec-floating{
    display:none;
  }
}

/* GALERI SAYFASI */

.elemor-gallery-page{
    background:
      radial-gradient(circle at top right, rgba(154,124,171,.08), transparent 35%),
      linear-gradient(180deg,#ffffff 0%,#f8f4fb 100%);
    padding:140px 20px 100px;
}

.elemor-gallery-inner{
    max-width:1280px;
    margin:0 auto;
}

.elemor-gallery-title{
    text-align:center;
    margin-bottom:60px;
}

.elemor-gallery-title span{
    display:block;
    color:#9a7cab;
    font-size:12px;
    font-weight:800;
    letter-spacing:3px;
    text-transform:uppercase;
    margin-bottom:14px;
}

.elemor-gallery-title h1{
    font-size:58px;
    line-height:1.08;
    margin:0;
    color:#23112f;
    font-weight:600;
    letter-spacing:-2px;
}

.elemor-gallery-title p{
    max-width:700px;
    margin:20px auto 0;
    font-size:17px;
    line-height:1.9;
    color:#665f6b;
}

.elemor-gallery-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:24px;
}

.elemor-gallery-item{
    overflow:hidden;
    border-radius:30px;
    background:#fff;
    box-shadow:0 18px 45px rgba(113,81,138,.10);
}

.elemor-gallery-item img{
    width:100%;
    height:420px;
    object-fit:cover;
    display:block;
    transition:transform .8s ease;
}

.elemor-gallery-item:hover img{
    transform:scale(1.08);
}

.elemor-gallery-cta{
    margin-top:80px;
    padding:55px;
    border-radius:34px;
    background:linear-gradient(
        135deg,
        #7d5b96 0%,
        #9a7cab 50%,
        #b090c3 100%
    );
    color:#fff;
    display:flex;
    justify-content:space-between;
    align-items:center;
    gap:30px;
    box-shadow:0 25px 65px rgba(113,81,138,.22);
}

.elemor-gallery-cta h2{
    margin:0 0 12px;
    font-size:38px;
    line-height:1.15;
    color:#fff;
    font-weight:800;
}

.elemor-gallery-cta p{
    margin:0;
    color:rgba(255,255,255,.9);
    font-size:16px;
    line-height:1.8;
    max-width:650px;
}

.elemor-gallery-btn{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    background:#fff;
    color:#7d5b96!important;
    text-decoration:none!important;
    padding:15px 32px;
    border-radius:999px;
    font-size:15px;
    font-weight:800;
    transition:.3s ease;
    white-space:nowrap;
}

.elemor-gallery-btn:hover{
    transform:translateY(-3px);
    background:#f8f4ff;
}

@media(max-width:1024px){

    .elemor-gallery-grid{
        grid-template-columns:repeat(2,1fr);
    }

    .elemor-gallery-title h1{
        font-size:44px;
    }
}

@media(max-width:768px){

    .elemor-gallery-page{
        padding:110px 16px 70px;
    }

    .elemor-gallery-grid{
        grid-template-columns:1fr;
    }

    .elemor-gallery-title h1{
        font-size:34px;
        letter-spacing:-1px;
    }

    .elemor-gallery-item img{
        height:320px;
    }

    .elemor-gallery-cta{
        flex-direction:column;
        align-items:flex-start;
        padding:35px 28px;
    }

    .elemor-gallery-btn{
        width:100%;
    }
}

.footer-bottom a{
    color:#d8b7ea;
    text-decoration:none;
    font-weight:700;
    transition:.3s ease;
}

.footer-bottom a:hover{
    color:#ffffff;
}

.elemor-cta-whatsapp{
    background:transparent;
    border:1px solid rgba(255,255,255,.45);
    color:#fff!important;
}

.elemor-cta-whatsapp i{
    font-size:38px;
    margin-right:4px;
}

.elemor-cta-whatsapp:hover{
    background:rgba(255,255,255,.12);
    transform:translateY(-4px);
}
/* WHATSAPP WIDGET */

.elemor-whatsapp-widget{
    position:fixed;
    right:24px;
    bottom:24px;
    z-index:9999;
}

.elemor-whatsapp-widget a{
    width:64px;
    height:64px;
    border-radius:50%;
    background:#25D366;
    color:#fff;
    display:flex;
    align-items:center;
    justify-content:center;
    text-decoration:none;
    font-size:34px;
    box-shadow:0 15px 35px rgba(37,211,102,.35);
    transition:.3s ease;
}

.elemor-whatsapp-widget a:hover{
    transform:translateY(-4px) scale(1.05);
}

@media(max-width:767px){

    .elemor-whatsapp-widget{
        right:18px;
        bottom:18px;
    }

    .elemor-whatsapp-widget a{
        width:58px;
        height:58px;
        font-size:30px;
    }

}