:root{
  --radius: 18px;
  --max: 1120px;

  --font-body: Inter, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  --font-head: Inter, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;

  --bg: #f7f4ee;
  --soft: #fffaf3;
  --card: #ffffff;

  --text: #111827;
  --muted: #4b5563;

  --line: rgba(63, 78, 79, .14);
  --line-soft: rgba(63, 78, 79, .09);
  --shadow: 0 18px 46px rgba(17,24,39,.08);

  --accent: #3f8f78;
  --accent-2: #2f6f61;
  --accent-soft: rgba(63,143,120,.12);
  --warm: #d89b63;
  --warm-soft: rgba(216,155,99,.14);

  --header-h: 82px;

  --glass-bg: rgba(22, 31, 32, .78);
  --glass-line: rgba(255,255,255,.12);
  --glass-text: rgba(255,255,255,.88);
  --glass-text-muted: rgba(255,255,255,.72);
}

*,
*::before,
*::after{
  box-sizing: border-box;
  min-width: 0;
}

html{ scroll-behavior: smooth; }

body{
  margin:0;
  background:
    radial-gradient(1100px 520px at 10% 0%, rgba(63,143,120,.12), transparent 62%),
    radial-gradient(900px 430px at 92% 8%, rgba(216,155,99,.12), transparent 62%),
    linear-gradient(180deg, #f8f5ef 0%, #f3f6f1 100%);
  color: var(--text);
  font-family: var(--font-body);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x:hidden;
}

img, svg, video, canvas{
  max-width:100%;
  display:block;
  height:auto;
}

a{ color:inherit; text-decoration:none; }
a:hover{ text-decoration:underline; }

.container{
  width:min(var(--max),100%);
  margin:0 auto;
  padding:0 16px;
}

:target{
  scroll-margin-top: calc(var(--header-h) + 18px);
}

.big{
  font-family: var(--font-head);
  font-weight:600;
  font-size: clamp(28px,3.4vw,44px);
  margin:0 0 10px;
  letter-spacing:-0.01em;
}

.muted{ color:var(--muted); margin:6px 0 0; }

/* HEADER */
.header{
  position: sticky;
  top: 0;
  z-index: 999;
  background: var(--glass-bg);
  border-bottom: 1px solid var(--glass-line);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.header__inner{
  height: var(--header-h);
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:14px;
}

.logo{
  display:flex;
  align-items:center;
  gap:10px;
  white-space:nowrap;
}

.logo img{
  height:72px;
  width:auto;
  transition: transform .25s ease, opacity .25s ease;
}

.logo:hover img{ transform: scale(1.04); opacity: .92; }

.nav{
  display:flex;
  align-items:center;
  justify-content:center;
  gap:10px;
  flex:1;
}

.nav__link{
  font-size:14px;
  color: var(--glass-text);
  opacity:.86;
  padding:8px 12px;
  border-radius:999px;
  text-decoration:none;
}

.nav__link:hover{
  background: rgba(255,255,255,.10);
  opacity:1;
  text-decoration:none;
}

.nav__link.is-active{
  background: rgba(255,255,255,.15);
  opacity:1;
  font-weight:800;
}

.header__actions{
  display:flex;
  align-items:center;
  gap:10px;
  white-space:nowrap;
}

.header a.icon-btn{
  width:42px;
  height:42px;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  border-radius:999px;
  background:#25D366;
  border:1px solid #25D366;
  color:#fff;
  font-size:18px;
  line-height:1;
  text-decoration:none;
  box-shadow: 0 12px 28px rgba(37, 211, 102, .24);
  transition: transform .12s ease, filter .12s ease, box-shadow .12s ease;
}

.header a.icon-btn:hover{
  transform: translateY(-1px);
  filter: brightness(1.04);
  box-shadow: 0 16px 34px rgba(37, 211, 102, .30);
  text-decoration:none;
}

.header a.icon-btn:active{
  transform: translateY(0);
  box-shadow: 0 10px 22px rgba(37, 211, 102, .18);
}

.header .icon-btn i,
.header .icon-btn svg{
  color: currentColor;
  fill: currentColor;
}

/* BUTTONS */
.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:10px;
  padding:12px 18px;
  border:1px solid transparent;
  font-weight:800;
  font-size:13px;
  letter-spacing:.01em;
  border-radius:14px;
  transition: transform .12s ease, filter .12s ease, background-color .12s ease, color .12s ease, border-color .12s ease, box-shadow .12s ease;
  user-select:none;
}

.btn:hover{ text-decoration:none; transform: translateY(-1px); }
.btn:active{ transform: translateY(0); }

.w-full{ width:100%; }

/* HERO */
.hero{
  position: relative;
  padding: clamp(56px, 6vw, 86px) 0;
  border-bottom: 1px solid var(--line-soft);
  overflow: hidden;
  background-image:
    linear-gradient(
      rgba(247,244,238,.34),
      rgba(247,244,238,.48)
    ),
    url("../img/hero-sea.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.hero__grid{
  max-width: 980px;
  margin: 0 auto;
  display: grid;
  gap: 22px;
  text-align: center;
}

.hero__kicker{
  font-size: clamp(16px, 1.4vw, 20px);
  letter-spacing: .18em;
  text-transform: uppercase;
  font-weight: 800;
  color: #243235;
  margin: 0 auto 12px;
  display: block;
}

.hero__title{
  font-family: var(--font-head);
  font-weight: 600;
  line-height: 1.02;
  font-size: clamp(44px, 5.1vw, 78px);
  letter-spacing: -0.01em;
  margin: 0 auto;
  position: relative;
  display: block;
  padding-bottom: 12px;
  color: #101827;
}

.hero__title::after{
  content:"";
  position:absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: 0;
  width: min(560px, 92%);
  height: 1px;
  background: rgba(63,143,120,.28);
  border-radius: 999px;
}

.hero__desc{
  max-width: 760px;
  margin: 24px auto 0;
  font-size: 21px;
  line-height: 1.8;
  font-weight: 400;
  color: rgba(17,24,39,.92);
  letter-spacing: -0.01em;
}

.hero__card{
  max-width: 980px;
  width: 100%;
  margin: 34px auto 0;
  background: rgba(255,250,243,.84);
  border: 1px solid rgba(63,143,120,.16);
  border-radius: 22px;
  box-shadow: 0 18px 48px rgba(17,24,39,.10);
  padding: 26px 26px;
  position: relative;
  overflow: hidden;
}

.hero__card::before{
  content:"";
  position:absolute;
  inset: -46% -34% auto auto;
  width: 360px;
  height: 360px;
  background: radial-gradient(circle at 30% 30%, rgba(63,143,120,.10), transparent 62%);
  pointer-events:none;
}

.hero__signature{
  margin-top: 0;
  display: grid;
  gap: 10px;
  position: relative;
  z-index: 1;
}

.hero__signature--focus{
  max-width: 900px;
  width: 100%;
  margin: 0 auto;
  padding: 26px 28px;
  border: 1px solid rgba(63,143,120,.14);
  border-radius: 18px;
  background: linear-gradient(145deg, rgba(255,255,255,.96), rgba(255,250,243,.88));
  box-shadow: 0 16px 40px rgba(17,24,39,.08);
  text-align: center;
}

.sig-main{
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 28px;
  letter-spacing: -0.02em;
  color: #0f172a;
  margin: 0;
}

.sig-sub{
  font-weight: 500;
  font-size: 20px;
  line-height: 1.7;
  color: rgba(17,24,39,.82);
  margin: 10px 0 0;
}

.hero__calm-strip{
  margin: 80px auto 0;
  width: 100%;
  max-width: 1000px;
  padding: 38px 20px;
  border-radius: 40px;
  background: linear-gradient(
    90deg,
    rgba(63,143,120,.13),
    rgba(216,155,99,.14),
    rgba(63,143,120,.13)
  );
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.hero__calm-strip p{
  font-size: 21px;
  font-weight: 700;
  color: #0f172a;
  margin: 0;
  letter-spacing: -0.01em;
}

/* ABOUT */
.about{
  padding: 72px 0 64px;
  background: var(--soft);
  border-bottom: 1px solid rgba(63,143,120,.10);
}

.about-inner{
  display:grid;
  grid-template-columns: minmax(0, 420px) minmax(0, 1fr);
  gap: 42px;
  align-items:center;
}

.about-photo{
  width:320px;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  border-radius: 22px;
  border: 1px solid rgba(63,143,120,.16);
  background: rgba(255,255,255,.70);
  box-shadow: 0 18px 40px rgba(17,24,39,.10);
}

.about-eyebrow{
  display:inline-block;
  font-weight:800;
  letter-spacing:.08em;
  text-transform:uppercase;
  font-size:12px;
  opacity:.9;
  margin:0 0 10px;
  color: var(--accent-2);
}

.about-title{
  margin:0;
  font-family: var(--font-head);
  font-size: clamp(26px, 3vw, 40px);
  line-height:1.1;
  font-weight:600;
  color: var(--text);
}

.about-subtitle{
  margin: 10px 0 18px;
  font-weight:700;
  opacity:.92;
  color: #3f4f4f;
}

.about-text{
  margin:0 0 14px;
  line-height:1.75;
  color: var(--muted);
}

/* SERVICES */
.services{
  padding: 72px 0 64px;
  position: relative;
}

.services__header{
  text-align:center;
  margin-bottom: 34px;
}

.services__grid{
  display:grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}

.service{
  background: rgba(255,255,255,.90);
  border: 1px solid rgba(63,143,120,.14);
  border-radius: 18px;
  padding: 22px;
  box-shadow: 0 14px 34px rgba(17,24,39,.08);
  transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease, background-color .18s ease;
}

.service:hover{
  transform: translateY(-4px);
  background: linear-gradient(145deg, #ffffff, #fbf7ef);
  box-shadow: 0 22px 50px rgba(17,24,39,.11);
  border-color: rgba(63,143,120,.30);
}

.service h3{
  margin: 0 0 10px;
  font-weight: 750;
  letter-spacing: .02em;
  font-size: 15px;
  color: #172526;
}

.service p{
  margin: 0;
  color: var(--muted);
  font-size: 14.5px;
  line-height: 1.7;
}

/* PROCESS */
.process{
  padding: 72px 0 64px;
  border-top: 1px solid rgba(63,143,120,.10);
}

.process__header{
  text-align: center;
  margin-bottom: 34px;
}

.process__grid{
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
}

.process__card{
  background: rgba(255,255,255,.90);
  border: 1px solid rgba(63,143,120,.14);
  border-radius: 18px;
  padding: 22px;
  box-shadow: 0 14px 34px rgba(17,24,39,.08);
  transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease, background-color .18s ease;
}

.process__card:hover{
  transform: translateY(-4px);
  background: linear-gradient(145deg, #ffffff, #f6fbf7);
  box-shadow: 0 22px 50px rgba(17,24,39,.11);
  border-color: rgba(63,143,120,.30);
}

.process__card h3{
  margin: 0 0 10px;
  font-weight: 750;
  letter-spacing: .01em;
  font-size: 16px;
  color: #172526;
}

.process__card p{
  margin: 0;
  color: var(--muted);
  font-size: 14.5px;
  line-height: 1.75;
}

/* CONTACT */
#contact{
  background: var(--soft);
  border-top: 1px solid rgba(63,143,120,.10);
  padding: 72px 0 90px;
  margin-top: 0;
}

.contact{
  display:grid;
  grid-template-columns: 1.05fr .95fr;
  column-gap: 32px;
  row-gap: 22px;
  align-items:start;
  grid-template-areas:
    "title title"
    "left  right";
}

.contact__title{
  grid-area: title;
  margin: 0;
  padding-bottom: 18px;
  text-align: center;
}

.contact__left{ grid-area: left; }
.contact__right{
  grid-area: right;
  display: grid;
  gap: 18px;
}

.form-card{
  background: var(--card);
  border: 1px solid rgba(63,143,120,.15);
  border-radius: 18px;
  padding: 26px;
  box-shadow: 0 20px 44px rgba(17,24,39,.08);
  transition: border-color .18s ease, box-shadow .18s ease, background-color .18s ease;
}

.form-card:hover{
  background: #fffdf8;
  border-color: rgba(63,143,120,.32);
  box-shadow: 0 26px 56px rgba(17,24,39,.11);
}

.form-title{
  margin: 0 0 10px;
  color: var(--text);
  font-size: 22px;
  line-height: 1.25;
}

.form-desc{
  margin: 0 0 18px;
  color: var(--muted);
  line-height: 1.65;
  font-size: 14.5px;
}

.contact-form{
  display: grid;
  gap: 14px;
}

.form-group{
  display: grid;
  gap: 7px;
}

.form-group label{
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .07em;
  text-transform: uppercase;
  color: var(--accent-2);
}
.required{
  color: #8b1e1e;
  font-weight: 700;
}
.form-group input,
.form-group select,
.form-group textarea{
  width: 100%;
  border: 1px solid rgba(63,143,120,.18);
  background: rgba(63,143,120,.045);
  color: var(--text);
  border-radius: 14px;
  padding: 13px 14px;
  font: inherit;
  outline: none;
  transition: border-color .16s ease, box-shadow .16s ease, background-color .16s ease;
}

.form-group textarea{
  resize: vertical;
  min-height: 120px;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus{
  background: #fff;
  border-color: rgba(63,143,120,.55);
  box-shadow: 0 0 0 4px rgba(63,143,120,.10);
}

.btn--form{
  width: 100%;
  justify-content: center;
  background: var(--accent);
  border-color: var(--accent);
  color: #fff;
  margin-top: 4px;

  position: relative;
  overflow: hidden;
}

.btn--form::after{
  content: "✓";
  position: absolute;
  right: 18px;
  opacity: 0;
  transform: translateX(-6px);
  transition: all .18s ease;
  font-weight: 800;
  font-size: 14px;
}

.btn--form:hover{
  background: var(--accent-2);
  border-color: var(--accent-2);
  color: #fff;
  box-shadow: 0 18px 44px rgba(63,143,120,.24);
}

.btn--form:hover::after{
  opacity: 1;
  transform: translateX(0);
}

.contact__cta{
  display:grid;
  gap: 12px;
}

.btn--cta{
  display:flex;
  align-items:center;
  gap:12px;
  justify-content:flex-start;
  background: rgba(63,143,120,.07);
  border: 1px solid rgba(63,143,120,.18);
  color: #172526;
  padding: 12px 16px;
  border-radius: 14px;
  transition: transform .16s ease, box-shadow .16s ease, background-color .16s ease, border-color .16s ease, color .16s ease;
}

.btn--cta i{ font-size: 16px; }

.btn--cta:hover{
  transform: translateY(-3px);
  box-shadow: 0 18px 40px rgba(17,24,39,.10);
  text-decoration:none;
}

.compact-info{
  display: grid;
  gap: 12px;
}

.compact-info__item{
  display: grid;
  gap: 4px;
  padding: 13px 14px;
  border-radius: 14px;
  background: rgba(63,143,120,.06);
  border: 1px solid rgba(63,143,120,.14);
  text-decoration: none;
}

.compact-info__item:hover{
  text-decoration: none;
  background: rgba(63,143,120,.09);
  border-color: rgba(63,143,120,.28);
}

.compact-info__item span{
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--accent-2);
}

.compact-info__item strong{
  font-size: 14.5px;
  color: var(--text);
  overflow-wrap: anywhere;
}

.btn--whatsapp:hover{
  background: #25D366;
  border-color: #25D366;
  color: #fff;
  box-shadow: 0 18px 44px rgba(37, 211, 102, .24);
}

.btn--instagram:hover{
  background: #E1306C;
  border-color: #E1306C;
  color: #fff;
  box-shadow: 0 18px 44px rgba(225, 48, 108, .22);
}

.btn--linkedin:hover{
  background: #0A66C2;
  border-color: #0A66C2;
  color: #fff;
  box-shadow: 0 18px 44px rgba(10, 102, 194, .22);
}

/* FOOTER */
.footer{
  background: var(--glass-bg);
  border-top: 1px solid var(--glass-line);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  padding: 22px 0;
}

.footer__inner{
  display:flex;
  justify-content:space-between;
  align-items:center;
  gap:20px;
  font-size:14px;
  color: var(--glass-text-muted);
}

.footer__right{
  display:flex;
  gap:18px;
}

.footer__right a{
  color: var(--glass-text-muted);
  text-decoration:none;
  transition: .2s ease;
}

.footer__right a:hover{
  color:#fff;
}

/* LEGAL */
.legal{
  padding: clamp(28px, 4vw, 56px) 0;
}

.legal__wrap{ max-width: 900px; }

.legal__head h1{
  margin: 0 0 6px;
  font-size: clamp(26px, 3.2vw, 36px);
  letter-spacing: -0.02em;
  color: var(--text);
}

.legal__meta{
  margin: 0 0 22px;
  color: var(--muted);
  font-size: 13px;
}

.legal__section{
  background: var(--card);
  border: 1px solid rgba(63,143,120,.14);
  border-radius: 16px;
  padding: 18px 18px;
  margin: 14px 0;
  box-shadow: 0 14px 34px rgba(17,24,39,.06);
}

.legal__section h2{
  margin: 0 0 10px;
  font-size: 16px;
  color: var(--text);
}

.legal__section p,
.legal__section li{
  color: var(--muted);
  line-height: 1.7;
}

.legal__section ul{
  padding-left: 18px;
  margin: 10px 0 0;
}

/* RESPONSIVE */
@media (max-width: 1024px){
  .nav{ display:none; }
  .services__grid{ grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 900px){
  .about-inner{ grid-template-columns: 1fr; gap: 24px; }

  .contact{
    grid-template-columns: 1fr;
    grid-template-areas:
      "title"
      "left"
      "right";
  }

  .contact__title{ padding-bottom: 8px; }
}

@media (max-width: 768px){
  .footer__inner{
    flex-direction:column;
    gap:12px;
    text-align:center;
  }

  .process__grid{
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px){
  .services__grid{ grid-template-columns: 1fr; }

  .about,
  .services,
  .process,
  #contact{
    padding-top: 56px;
    padding-bottom: 56px;
  }
}

@media (max-width: 600px){
  :root{ --header-h: 72px; }

  .logo img{ height: 54px; }

  .btn{ width: 100%; }

  .hero__card{ padding: 22px 18px; }

  .hero__signature--focus{ padding: 20px 16px; }

  .sig-main{ font-size: 19px; }

  .sig-sub{ font-size: 15.5px; }
}

@media (max-width: 420px){
  .container{ padding: 0 14px; }
}

/* PLATFORM EXTRAS */
.armut-icon{
  height:18px;
  width:auto;
  margin-right:6px;
  vertical-align:middle;
}

.btn--armut:hover{
  background:#63c132;
  color:#fff;
  border-color:#63c132;
  box-shadow: 0 18px 44px rgba(99, 193, 50, .22);
}

.btn-icon-img {
  width: 22px;
  height: 22px;
  object-fit: contain;
  display: inline-block;
}

.btn--doktortakvimi:hover {
  border-color: #00b39f;
  background: #00b39f;
  color: #fff;
  box-shadow: 0 18px 44px rgba(0, 179, 159, .22);
}

/* Mindova + BBG sections: page rhythm */
#hakkimda.about,
#services.services,
#process.process,
#contact{
  padding-top: 72px;
  padding-bottom: 72px;
}