﻿/* =========================
   RESET (modern + safe)
========================= */
*, *::before, *::after { box-sizing: border-box; }
html, body { height: 100%; }
body { margin: 0; }
img, picture, video, canvas, svg { display: block; max-width: 100%; }
input, button, textarea, select { font: inherit; }
p, h1, h2, h3, h4, h5, h6 { overflow-wrap: break-word; margin: 0; }
ul, ol { margin: 0; padding: 0; list-style: none; }
a { color: inherit; text-decoration: none; }
button { background: none; border: 0; padding: 0; cursor: pointer; }
:focus-visible { outline: 3px solid rgba(255,255,255,.8); outline-offset: 3px; }
::selection { background: rgba(255, 0, 97, .25); }

:root{
  --font-main: "Plus Jakarta Sans", sans-serif;
  --font-hand: "Beauty", cursive;

  --pink: #f04a83;
  --pink-2: #ff3d7d;
  --red: #ff2b2b;
  --ink: #131313;

  --radius-xl: 28px;
  --shadow-soft: 0 18px 50px rgba(0,0,0,.12);
  --shadow-soft-2: 0 14px 40px rgba(0,0,0,.10);

  --container: 1450px;
  --gutter: 24px;

  --header-h: 96px;
  --header-h-sticky: 74px;
}

@font-face{
  font-family: "Beauty";
  src: url("assets/fonts/Beauty.woff2") format("woff2"),
       url("assets/fonts/Beauty.woff") format("woff");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

body{
  font-family: var(--font-main);
  color: var(--ink);
  background: #fff;
  line-height: 1.35;
}
body.has-drawer-open{
  overflow: hidden;
}

/* container */
.container{
  width: min(var(--container), calc(100% - var(--gutter) * 2));
  margin-inline: auto;
  position: relative;
}

/* =========================
   HEADER (logo + centered capsule nav + search button)
========================= */
.header{
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 1000;
  height: var(--header-h);
  padding-top: 14px;
  transition: height .22s ease, padding-top .22s ease, background .22s ease, box-shadow .22s ease;
  background: linear-gradient(180deg, rgba(6,17,31,.45), rgba(6,17,31,0));
}
.header.is-sticky{
  height: var(--header-h-sticky);
  padding-top: 8px;
  background: #fff;
  backdrop-filter: blur(6px);
  box-shadow: 0 8px 26px rgba(0,0,0,.24);
}
.header__inner{
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  width: 90%;
}

/* brand */
.brand{
  display: inline-flex;
  align-items: center;
  justify-self: start;
}
.brand__img{
  width: 168px;
  height: auto;
  transition: all .2s cubic-bezier(0.42, 0, 0.21, 1.08);
}

.header__menu{
  justify-self: end;
  width: auto;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 12px;
}

/* pill menu */
.navpill{
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 8px;
  min-height: 44px;
  padding: 4px 12px;
  border-radius: 999px;
  background: rgba(255,255,255,.98);
  border: 1px solid rgba(0,0,0,.06);
  box-shadow: 0 12px 32px rgba(0,0,0,.16);
  transition: box-shadow .2s ease;
}
.header.is-sticky .navpill{
  box-shadow: initial;
  border: none;
}
.navpill__link{
  font-size: 16px;
  font-weight: 500;
  color: #0f4e7c;
  padding: 13px 15px;
  border-radius: 999px;
  transition: background .16s ease, color .16s ease;
  white-space: nowrap;
}
.navpill__link:hover{
  background: rgba(0,89,153,.11);
  color: #083758;
}
.navpill__link--cta{
  color: #0f4e7c;
  background: rgba(0,89,153,.09);
}

.header__search{
  width: 36px;
  height: 36px;
  border-radius: 999px;
  display: inline-grid;
  place-items: center;
  border: 1px solid rgba(7,58,99,.22);
  background: rgba(255,255,255,.97);
  box-shadow: 0 8px 22px rgba(0,0,0,.14);
}
.header__search svg{
  width: 14px;
  height: 14px;
  fill: none;
  stroke: #0f4e7c;
  stroke-width: 2;
  stroke-linecap: round;
}

/* mobile */
.header__burger{
  display: none;
  width: 42px;
  height: 38px;
  border-radius: 12px;
  align-items: center;
  justify-content: center;
  gap: 5px;
  background: rgba(255,255,255,.92);
  border: 1px solid rgba(0,0,0,.08);
}
.header__burger span{
  width: 20px;
  height: 2px;
  background: rgba(0,0,0,.78);
  display: block;
  border-radius: 2px;
}
.mobile-nav{
  display: none;
  margin-top: var(--header-h);
  background: rgba(255,255,255,.985);
  border-bottom: 1px solid rgba(0,0,0,.06);
}
.mobile-nav.is-open{ display: block; }
.mobile-nav__inner{ display: grid; gap: 8px; padding: 12px 0 16px; }
.mobile-nav__link{
  padding: 12px 14px;
  border-radius: 14px;
  font-weight: 700;
  color: #37404a;
  background: rgba(0,0,0,.03);
}
.mobile-nav__link--cta{ background: rgba(240,74,131,.14); }

/* =========================
   HERO (FULL SCREEN like the original)
========================= */
.hero{
  position: relative;
  min-height: 100svh;
  overflow: hidden;
}

/* full width background image */
.hero__bg{
  position: absolute;
  inset: 0;
  background: url("../images/home-slider-1.jpg");
  background-size: cover;
  background-position: center center;
  transform: scale(1.01);
}

.hero__shade{
  position: absolute;
  inset: 0 auto 0 0;
  width: 43%;
  border-bottom-right-radius: 58% 100%;
  background: linear-gradient(180deg, rgba(4,20,30,.80), rgba(4,20,30,.58));
  top: -20%;
  bottom: -15%;
}

/* subtle vignette */
.hero::after{
  content:"";
  position:absolute;
  inset:0;
  background: radial-gradient(1200px 520px at 70% 40%, rgba(255,255,255,.08), transparent 60%);
  pointer-events:none;
}

.hero__inner{
  position: relative;
  min-height: 100vh;
  padding-top: 120px;
  display: flex;
  align-items: center;
  width: 90%;
}

/* left panel content (like screenshot original: dark overlay area) */
.hero__panel{
  width: 100%;
  max-width: 650px;
}
.hero__eyebrow{
  color: rgba(255,255,255,.92);
  font-weight: 500;
  font-size: 35px;
  line-height: 1.1;
  margin-bottom: 5px;
}
.hero__title{
  color: #fff;
  font-weight: 800;
  font-size: clamp(38px, 4vw, 56px);
  line-height: 1.04;
  margin-bottom: 15px;
  font-size: 53px;
}
.hero__desc{
  color: rgba(255,255,255,.90);
  font-size: 18px;
  line-height: 1.6;
  max-width: 600px;
  margin-bottom: 26px;
  text-shadow: 0 4px 14px rgba(0,0,0,.35);
}

.hero__pillstack{
  display: grid;
  justify-items: start;
  gap: 12px;
}
.pill{
  min-height: 55px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 18px;
  border-radius: 999px;
  font-size: 18px;
  font-weight: 600;
  background: #ff114c;
  color: #fff;
  box-shadow: 0 8px 20px rgba(255,0,80,.35);
  transition: transform .18s ease, filter .18s ease;
  width: 380px;
  cursor: initial;
}
.pill:hover{
  transform: translateY(-1px);
  filter: brightness(1.06);
}

.hero__loc{
  position: absolute;
  right: 5%;
  bottom: 4%;
  font-weight: 600;
  font-size: 20px;
  letter-spacing: -.2px;
  color: #fff;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  text-shadow: 0 4px 12px rgba(0,0,0,.45);
}
.hero__loc svg{
  width: 26px;
  height: 26px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
}

.hero__side-cta{
  position: fixed;
  z-index: 1010;
  right: 18px;
  top: 50%;
  transform: translateY(-50%);
  display: grid;
  justify-items: end;
  gap: 12px;
}
.side-cta__pill{
  min-height: 168px;
  border-radius: 24px;
  writing-mode: vertical-rl;
  transform: rotate(180deg);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 25px 13px;
  font-size: 18px;
  font-weight: 500;
  letter-spacing: .2px;
  color: #fff;
  box-shadow: 0 12px 26px rgba(0,0,0,.28);
}
.side-cta__pill--blue{ background: linear-gradient(180deg, #2e8eff, #186fe1); }
.side-cta__pill--green{ background: linear-gradient(180deg, #49cd2f, #19a621); }

.side-cta__wa{
  width: 52px;
  height: 52px;
  border-radius: 999px;
  background: #20c452;
  border: 3px solid #fff;
  box-shadow: 0 8px 20px rgba(0,0,0,.24);
  display: grid;
  place-items: center;
}
.side-cta__wa svg{
  width: 26px;
  height: 26px;
  fill: none;
  stroke: #fff;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.contact-drawer{
  position: fixed;
  inset: 0;
  z-index: 1300;
  pointer-events: none;
}
.contact-drawer__overlay{
  position: absolute;
  inset: 0;
  border: 0;
  background: rgba(6, 18, 32, .45);
  opacity: 0;
  transition: opacity .24s ease;
}
.contact-drawer__panel{
  position: absolute;
  top: 0;
  right: 0;
  width: min(460px, 100%);
  height: 100%;
  background: #fff;
  box-shadow: -14px 0 34px rgba(0,0,0,.22);
  transform: translateX(100%);
  transition: transform .28s ease;
  padding: 24px 22px;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.contact-drawer.is-open{
  pointer-events: auto;
}
.contact-drawer.is-open .contact-drawer__overlay{
  opacity: 1;
}
.contact-drawer.is-open .contact-drawer__panel{
  transform: translateX(0);
}
.contact-drawer__close{
  width: 38px;
  height: 38px;
  border-radius: 999px;
  background: rgba(0,0,0,.06);
  color: #142840;
  font-size: 30px;
  line-height: 1;
  display: grid;
  place-items: center;
  margin-left: auto;
  padding-bottom: 10px;
  position: absolute;
  right: 15px;
  top: 15px;
}
.contact-drawer__title{
  margin: 10px 0 18px;
  font-size: 35px;
  line-height: 1.1;
  color: #132a43;
  width: 100%;
  font-weight: 400;
}
.contact-form{
  display: grid;
  gap: 10px;
  width: 100%;
}
.contact-form__label{
  font-size: 13px;
  font-weight: 600;
  color: #28415d;
}
.contact-form__input,
.contact-form__textarea{
  width: 100%;
  border-radius: 12px;
  border: 1px solid rgba(13,42,71,.2);
  background: #f9fbff;
  color: #162a3f;
  padding: 11px 12px;
  font-size: 14px;
}
.contact-form__textarea{
  resize: vertical;
  min-height: 120px;
}
.contact-form__check{
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-top: 2px;
  font-size: 13px;
  color: #2c3f56;
  line-height: 1.45;
}
.contact-form__check input{
  margin-top: 2px;
}
.contact-form__submit{
  margin-top: 6px;
  min-height: 44px;
  border-radius: 999px;
  background: linear-gradient(180deg, #2f8dff, #1e73df);
  color: #fff;
  font-size: 15px;
  font-weight: 700;
  box-shadow: 0 10px 20px rgba(30,115,223,.28);
}
.contact-form__error{
  display: block;
  border: 1px solid #de3a3a;
  color: #b11212;
  background: #fff4f4;
  border-radius: 12px;
  padding: 10px 12px;
  font-size: 13px;
  font-weight: 600;
}
.contact-form__error[hidden]{
  display: none;
}

/* =========================
   SECTIONS (same as before)
========================= */
.section{padding: 100px 0;}
.section--pink{ background: var(--pink); color: #fff; }
.section--white{/* background: #fff; */}

.hand{
  font-family: var(--font-hand);
  font-weight: 400;
  font-size: 52px;
  line-height: 1;
  margin-bottom: 12px;
  opacity: .95;
}

.section__title{
  font-size: 40px;
  font-weight: 800;
  line-height: 1.05;
  margin-bottom: 18px;
}
.section__title--plain{
  margin-bottom: 6px;
  font-size: 58px;
  font-weight: 500;
}
.section__title--pink{ color: var(--pink); }

.section__text{
  font-size: 20px;
  line-height: 2;
  color: rgba(255,255,255,.9);
  max-width: 62ch;
  margin-bottom: 30px;
}
.section--white .section__text{ color: rgba(0,0,0,.68); }

.split{
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.split__left {
    width: 53%;
}


.card{
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-soft-2);
  background: rgba(255,255,255,.1);
}
.card--photo img{width: 100%;height: auto;}
.card--single img{/* height: 420px; */}
.card--duo{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  padding: 14px;
  background: rgba(255,255,255,.12);
}
.card--duo img{
  width: 100%;
  height: 360px;
  object-fit: cover;
  border-radius: 18px;
  background: rgba(0,0,0,.08);
}

.photo-stack{ display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.photo-stack__item{
  border-radius: 22px;
  overflow: hidden;
  box-shadow: var(--shadow-soft-2);
  background: rgba(0,0,0,.04);
}
.photo-stack__item img{ width: 100%; height: 260px; object-fit: cover; }

#yaklasimimiz .split{
  display: flex;
  align-items: center;
  justify-content: space-between;
}
#yaklasimimiz .hand{
  font-size: 110px;
  line-height: .9;
  margin-bottom: 16px;
}
#yaklasimimiz .section__text{
  /* max-width: 64ch; */
}
#yaklasimimiz .card{
  border-radius: 0;
  box-shadow: none;
  background: transparent;
}
#yaklasimimiz .card--photo img{
  height: 470px;
  border-radius: 0;
  height: auto;
}
#yaklasimimiz .split__left {
    width: 55%;
}

.split__right {
    /* width: 100%; */
    width: 38%;
}
#narda-yasam{
  /* background: #ececef; */
}
#narda-yasam .split{
  /* grid-template-columns: .92fr 1.08fr; */
}
#narda-yasam .section__text{
  color: rgba(0,0,0,.72);
}
#narda-yasam .card{
  box-shadow: none;
  background: transparent;
}
#narda-yasam .card--single img{
  /* height: 470px; */
  /* border-radius: 22px; */
}

#gozlem-destek .card{
  box-shadow: none;
  background: transparent;
}
#gozlem-destek .card--single img{
  /* height: 430px; */
}

#galeri{
  /* background: #ececef; */
}
#galeri .hand{
  color: #ff2a57;
  font-size: 100px;
  margin: 0px 0px -90px;
  padding-left: 2%;
}

.gallery{
  display: grid;
  grid-template-columns: 1.05fr 1.7fr 1.2fr 1.2fr;
  grid-template-rows: repeat(4, 112px);
  gap: 16px;
  align-items: stretch;
  position: relative;
  z-index: 2;
}
.gallery__item{
  border-radius: 28px;
  overflow: hidden;
  box-shadow: 0 12px 28px rgba(0,0,0,.10);
  background: rgba(0,0,0,.04);
  transition: transform .18s ease;
}
.gallery__item:hover{ transform: translateY(-2px); }
.gallery__item img{ width: 100%; height: 100%; object-fit: cover; }
.gallery__item--a{ grid-column: 1; grid-row: 2 / span 3; }
.gallery__item--b{ grid-column: 2; grid-row: 1 / span 4; }
.gallery__item--c{ grid-column: 3; grid-row: 1 / span 2; }
.gallery__item--d{ grid-column: 3; grid-row: 3 / span 2; }
.gallery__item--e{ grid-column: 4; grid-row: 1 / span 3; }
.gallery__item--f{ grid-column: 4; grid-row: 4 / span 1; }

.follow{display: flex;justify-content: center;padding: 120px 0px 20px;}
.follow__imglink{
  display: inline-block;
  width: min(520px, 100%);
  transition: transform .18s ease;
}
.follow__imglink:hover{ transform: translateY(-2px); }
.follow__imglink img{
  width: 100%;
  height: auto;
  border-radius: 20px;
  /* box-shadow: 0 14px 34px rgba(0,0,0,.14); */
}
.follow__bubble{
  width: min(420px, 100%);
  border-radius: 26px;
  background: #fff;
  box-shadow: 0 18px 50px rgba(0,0,0,.14);
  border: 1px solid rgba(0,0,0,.06);
  padding: 20px 18px;
  text-align: center;
}
.follow__ig{ font-weight: 900; color: rgba(0,0,0,.80); font-size: 14px; margin-bottom: 8px; }
.follow__handle{ font-weight: 900; font-size: 20px; letter-spacing: -.3px; margin-bottom: 12px; }
.follow__btn{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 16px;
  border-radius: 999px;
  font-weight: 900;
  font-size: 14px;
  background: rgba(240,74,131,.14);
  color: rgba(0,0,0,.78);
}

.center-title{text-align: center;padding: 20px 0 20px;line-height: 1.1;}
.center-title__eyebrow{font-weight: 700;color: rgba(0,0,0,.62);margin-bottom: 5px;font-size: 50px;}
.center-title__headline{
  font-size: 80px;
  font-weight: 900;
  color: #FF173D;
}

/* videos */
.video-showcase{
  padding: 30px 0px 80px;
  background: var(--pink);
  display: inline-block;
  width: 100%;
}
.video-showcase__eyebrow{
  text-align: center;
  color: rgba(255,255,255,.92);
  font-weight: 700;
  font-size: 28px;
}
.video-showcase__title{
  text-align: center;
  color: #fff;
  font-size: clamp(40px, 4vw, 58px);
  line-height: 1;
  margin: 5px 0 50px;
  font-weight: 800;
}
.video-grid{
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 30px;
}
.video-grid > .item{
  display: flex;
}
.video-item{
  position: relative;
  display: block;
  width: 100%;
  border-radius: 30px;
  /* overflow: hidden; */
  box-shadow: 0 12px 24px rgba(0,0,0,.12);
}
.item > .video-item{
  width: 100%;
}
.video-item__thumb{
  width: 100%;
  /* aspect-ratio: 3 / 4.2; */
  /* object-fit: cover; */
  display: block;
  border-radius: 25px;
}
.video-item__cta{
  position: absolute;
  left: 50%;
  bottom: 12px;
  transform: translateX(-50%);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: -30px;
}
.video-item__icon{
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: #fff;
  display: grid;
  place-items: center;
  box-shadow: 0 6px 14px rgba(0,0,0,.14);
}
.video-item__icon svg{
  width: 18px;
  height: 18px;
  fill: none;
  stroke: #00a8f1;
  stroke-width: 2;
  stroke-linejoin: round;
}
.video-item__text{
  min-height: 36px;
  border-radius: 10px;
  padding: 0 18px;
  background: #fff;
  color: #5d6168;
  font-size: 14px;
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  box-shadow: 0 6px 14px rgba(0,0,0,.14);
  white-space: nowrap;
}
.video-carousel .item{
  padding: 8px;
}

/* slider */
.slider-wrap{position: relative;padding: 25px 0px 70px;}
.owl-carousel .slide{ padding: 8px; }
.slide img{
  width: 100%;
  /* height: 310px; */
  object-fit: cover;
  border-radius: 24px;
  /* box-shadow: 0 14px 40px rgba(0,0,0,.14); */
  background: rgba(0,0,0,.04);
}
.slider-arrow{
  position: absolute;
  top: 65%;
  transform: translateY(-50%);
  width: 52px;
  height: 52px;
  border-radius: 999px;
  background: rgba(240,74,131,.14);
  border: 1px solid rgba(240,74,131,.22);
  color: #fff;
  display: grid;
  place-items: center;
  z-index: 3;
  font-size: 90px;
  font-weight: 300;
  line-height: 1;
}
.slider-arrow--left{left: -60px;}
.slider-arrow--right{right: -60px;}
.owl-theme .owl-dots{ display: none; }


/* =========================
   RESPONSIVE
========================= */






/* =========================
   CTA / FOOTER
========================= */
.cta{
  background: transparent;
  padding: 0;
}

.cta-top{
  /* background: #e7e8ec; */
  padding: 88px 0 82px;
  text-align: center;
}
.cta-top__inner{
  max-width: 980px;
}
.cta-top__logo{
  width: 170px;
  height: auto;
  margin: 0 auto 22px;
}
.cta-top__eyebrow{
  font-weight: 500;
  font-size: 48px;
  line-height: 1.08;
  color: #323b4a;
  margin-bottom: 8px;
  letter-spacing: -.3px;
}
.cta-top__title{
  font-weight: 800;
  font-size: clamp(36px, 4vw, 70px);
  line-height: 1.03;
  letter-spacing: -.8px;
  color: #ff204d;
  margin-bottom: 18px;
}
.cta-top__desc{
  max-width: 780px;
  margin: 0 auto;
  font-size: 16px;
  line-height: 1.45;
  color: #384355;
}

.cta-bottom{
  background: #ff174b;
  color: #fff;
  padding: 14px 0 16px;
}
.cta-bottom__inner{
  display: grid;
  justify-items: center;
  gap: 9px;
}
.cta-bottom__label{
  font-weight: 500;
  font-size: 13px;
  opacity: .96;
}
.cta-bottom__social{
  display: flex;
  gap: 12px;
  align-items: center;
}
.cta-bottom__icon{
  width: 30px;
  height: 30px;
  border-radius: 999px;
  background: #fff;
  color: #ff174b;
  display: grid;
  place-items: center;
  font-size: 15px;
  transition: transform .18s ease, filter .18s ease;
}
.cta-bottom__icon:hover{
  transform: translateY(-1px);
  filter: brightness(.95);
}
.cta-bottom__line{
  width: min(1020px, 100%);
  height: 1px;
  background: rgba(255,255,255,.58);
  margin-top: 4px;
}
.cta-bottom__copy{
  font-size: 13px;
  opacity: .95;
}
section#narda-yasam {
    padding-top: 0;
}
/* Helpers */
.hide-mobile{ display: inline; }


.slider-wrap::Before {
    content: "";
    position: absolute;
    left: 0px;
    bottom: 0px;
    width: 100%;
    height: 50%;
    background-color: var(--pink);
}
.is-sticky .brand__img {
    width: 90px;
}
