/* ================= RESET ================= */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Inter", system-ui, sans-serif;
  background: #f7f4ef;
  color: #1f2a37;
}

/* ================= GLOBAL ================= */
.container {
  width: 1200px;
  max-width: 92%;
  margin: auto;
}

h1, h2 {
  font-family: "Playfair Display", serif;
}

.btn-primary {
  background: #2d338c;
  color: #fff;
  padding: 14px 26px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 600;
  display: inline-block;
}

.btn-outline {
  border: 1px solid #ddd;
  padding: 14px 26px;
  border-radius: 999px;
  color: #1f2a37;
  text-decoration: none;
  background: #fff;
}

.btn-secondary {
  background: #2d338c;
  color: #fff;
  padding: 12px 26px;
  border-radius: 999px;
  text-decoration: none;
  display: inline-block;
}

/* ================= HEADER ================= */
.topbar {
  position: fixed;
  top: 0;
  width: 100%;
  background: #f7f4ef;
  z-index: 100;
  border-bottom: 1px solid #eee;
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 80px;
}

.menu a {
  margin: 0 14px;
  text-decoration: none;
  color: #1f2a37;
  font-weight: 500;
}

/* ================= HERO / SLIDER ================= */
.hero {
  position: relative;
  height: 80vh;
  padding-top: 80px;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  z-index: 1;
  background-position: center 7%;
}

.hero-bg::after {
  content: "";
  position: absolute;
  inset: 0;

}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 620px;
  padding-top: 140px;
  margin-left: 15%;
}

.hero h1 {
  font-size: 56px;
  line-height: 1.2;
  margin-bottom: 20px;
}

.hero p {
  font-size: 18px;
  margin-bottom: 28px;
}

.hero-actions a {
  margin-right: 14px;
}

/* ================= ABOUT ================= */

/* ABOUT */
.about{
  position: relative;
  padding: 120px 0;
  overflow: hidden;
}

.about-bg{
  position: absolute;
  inset: 0;
  background: url("../images/slider/about.jpg") center/cover no-repeat;
  z-index: 0;
}

/* içerik üstte */
.about-layout{
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 40% 60%;
  gap: 60px;
  align-items: center;
}

/* SOL FOTO KUTUSU */
.about-photo{
  border-radius: 40px;
  overflow: hidden;
  box-shadow: 0 30px 80px rgba(0,0,0,.15);
  background: #fff;
}

.about-photo img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* SAĞ KART */
.about-card{
  border-radius: 40px;
}

.about-card h2{
  font-size: 42px;
  margin-bottom: 10px;
}

.about-card h4{
  font-weight: 600;
  margin-bottom: 20px;
}

.about-stats{
  display: flex;
  gap: 20px;
  margin: 30px 0;
}

.about-stats div{
  background: #f6f2ec;
  border-radius: 18px;
  text-align: center;
}

.about-stats span{
  display: block;
  font-size: 14px;
  opacity: .7;
}



.about-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgb(247 244 239 / 90%);
}

.about-content{
  display: grid;
  grid-template-columns: 35% 65%;
  gap: 40px;
  align-items: center;
}

.about-text {
  background: #fff;
  border-radius: 40px;
  padding: 50px;
  max-width: 560px;
}

.about-text h2 {
  font-size: 42px;
  margin-bottom: 10px;
}

.about-text h4 {
  margin-bottom: 14px;
}



/* ================= SERVICES ================= */


/* ================= SERVICES ================= */

.services {
  position: relative;
  padding: 120px 0;
  background: 
    linear-gradient(rgba(250,247,242,.94), rgba(250,247,242,.94)),
    url("../images/services-bg.jpg") center/cover no-repeat;
}

.section-title {
  text-align: center;
  font-size: 42px;
  margin-bottom: 10px;
}

.section-desc {
  text-align: center;
  color: #666;
  margin-bottom: 60px;
}

.services-wrapper {
  position: relative;
  display: flex;
  align-items: center;

}

.services-track {
  display: flex;
  gap: 30px;
  overflow: hidden;
  scroll-behavior: smooth;
}

.service-card {
  min-width: calc((100% - 60px) / 3); /* 3 kart */
  background: #fff;
  border-radius: 26px;
  box-shadow: 0 20px 50px rgba(0,0,0,.08);
  overflow: hidden;
  flex: 0 0 calc((100% - 40px) / 3);

}

.service-card img {
  width: 100%;
  height: 220px;
  object-fit: cover;
}

.service-body {
  padding: 24px;
}

.service-body h3 {
  font-size: 20px;
  margin-bottom: 10px;
}

.service-body p {
  font-size: 14px;
  color: #666;
  line-height: 1.6;
  margin-bottom: 16px;
}

.service-btn {
  display: inline-block;
  padding: 10px 18px;
  background: #2d338c;
  color: #fff;
  border-radius: 20px;
  font-size: 14px;
  text-decoration: none;
}

.service-btn:hover {
  background: #111;
}

/* oklar */
.nav-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: #1f2d3d;
  color: #fff;
  border: none;
  cursor: pointer;

  display: flex;
  align-items: center;
  justify-content: center;

  font-size: 22px;
  z-index: 10;
}

.nav-arrow.left {
  left: -22px;
}

.nav-arrow.right {
  right: -22px;
}

.nav-arrow:hover {
  background: #2c3e50;
}

/* ================= APPOINTMENT ================= */
.appointment {
  position: relative;
  padding: 140px 0;
  overflow: hidden;
}

.appointment-bg {
  position: absolute;
  inset: 0;
  background: url("../images/slider/slide1.jpg") center/cover no-repeat;
}

.appointment-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(247,244,239,0.94);
}

.appointment-content {
  position: relative;
  z-index: 2;
  display: flex;
  justify-content: flex-end;
}





/* ================= FOOTER ================= */
.footer {
  padding: 40px 0;
  text-align: center;
  background: #f4f1ec;
}

/* ================= APPOINTMENT SOFT ================= */
.appointment-soft{
  position: relative;
  padding: 120px 0;
  background: #f6f3ef;
  overflow: hidden;
}

.appointment-soft .appointment-bg{
  position:absolute;
  inset:0;
  filter: blur(0px);
}

.appointment-box{
  position: relative;
  z-index: 2;
  max-width: 900px;
  background: rgba(255,255,255,.65);
  backdrop-filter: blur(8px);
  border-radius: 22px;
  padding: 28px 30px 26px;
  box-shadow: 0 30px 80px rgba(0,0,0,.08);
}

.appointment-box h2{
  font-family: "Playfair Display", serif;
  font-size: 34px;
  margin-bottom: 6px;
}
.appointment-box h2 span{
  font-weight: 400;
}

.appointment-box p{
  font-size: 14px;
  color:#6b7280;
  margin-bottom: 16px;
}

/* form layout */
.appointment-form{
  display: grid;
  gap: 12px;
}

.appointment-form .row{
  display:grid;
  gap: 12px;
}
.row.two{ grid-template-columns: 1fr 1fr; }
.row.three{ grid-template-columns: 1.4fr .9fr .7fr; }
.row.one{
  grid-template-columns: 1fr auto;
  align-items: center;
}

/* inputs */
.appointment-form input,
.appointment-form select{
  padding: 13px 14px;
  border-radius: 14px;
  border: none;
  background: rgba(255,255,255,.85);
  font-size: 14px;
  outline: none;
}

.appointment-form input::placeholder{
  color:#9ca3af;
}

.appointment-form input:focus,
.appointment-form select:focus{
  box-shadow: 0 0 0 3px rgba(30,41,59,.12);
}

/* button */
.appointment-form .btn-primary{
  height: 48px;
  padding: 0 28px;
  border-radius: 14px;
  background: #2d338c;
  color:#fff;
  border:none;
  font-weight: 600;
  cursor: pointer;
}

/* responsive */
@media(max-width: 900px){
  .appointment-box{ padding: 22px; }
  .row.two, .row.three, .row.one{
    grid-template-columns: 1fr;
  }
  .appointment-form .btn-primary{
    width:100%;
  }
}

/* ================= APPOINTMENT WITH IMAGE ================= */
.appointment-layout{
  position: relative;
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  align-items: center;
  gap: 40px;
  z-index: 2;
}

.appointment-image{
  position: relative;
  height: 360px;
  overflow: hidden;
  border-radius: 220px 40px 220px 40px;
}

.appointment-image img{
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* form kutusu */
.appointment-box{
  background: rgba(255,255,255,.65);
  backdrop-filter: blur(8px);
  border-radius: 22px;
  padding: 28px 30px;
  box-shadow: 0 30px 80px rgba(0,0,0,.08);
}

/* responsive */
@media(max-width: 900px){
  .appointment-layout{
    grid-template-columns: 1fr;
  }

  .appointment-image{
    height: 260px;
    border-radius: 40px;
  }
}

/* ================= ABOUT STATS (ICONLU) ================= */

.about-stats{
  display: flex;
  gap: 20px;
  margin-top: 30px;
  flex-wrap: wrap;
}

.stat-box{
  display: flex;
  align-items: center;
  gap: 14px;
  background: #f6f2ec;
  padding: 16px 22px;
  border-radius: 18px;
  min-width: 210px;
  box-shadow: 0 6px 20px rgba(0,0,0,.04);
}

.stat-icon{
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
}

.stat-icon img{
  width: 44px;
  height: 44px;
}

.stat-text strong{
  display: block;
  font-size: 18px;
  color: #1f2d3d;
}

.stat-text span{
  font-size: 14px;
  color: #6b7280;
}

/* ================= FOOTER ================= */
.site-footer {
  position: relative;
  background: #f7f3ee;
  padding: 80px 0 30px;
  overflow: hidden;
}

.footer-bg {
  position: absolute;
  inset: 0;
  background: url("../images/footer-bg.jpg") center/cover no-repeat;
  opacity: 0.12;
}

.footer-content {
  position: relative;
  z-index: 2;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 22px;
  font-weight: 600;
  color: #1f2a37;
  margin-bottom: 40px;
}

.footer-logo .psi {
  font-size: 26px;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}

.footer-col h4 {
  font-size: 20px;
  margin-bottom: 15px;
  color: #1f2a37;
}

.footer-col p {
  color: #4b5563;
  line-height: 1.7;
  margin-bottom: 10px;
}

.footer-col ul {
  list-style: none;
  padding: 0;
}

.footer-col ul li {
  margin-bottom: 10px;
}

.footer-col ul a {
  text-decoration: none;
  color: #4b5563;
  transition: color .3s;
}

.footer-col ul a:hover {
  color: #c9a173;
}

.footer-social {
  display: flex;
  gap: 12px;
  margin-top: 15px;
}

.footer-social a {
  width: 36px;
  height: 36px;
  background: #fff;
  border-radius: 50%;
  display: grid;
  place-items: center;
  box-shadow: 0 4px 12px rgba(0,0,0,.08);
  text-decoration: none;
}

.footer-form {
  display: flex;
  gap: 10px;
  margin-top: 15px;
}

.footer-form input {
  flex: 1;
  padding: 12px 14px;
  border-radius: 12px;
  border: none;
  background: #fff;
}

.footer-form button {
  padding: 12px 20px;
  border-radius: 12px;
  border: none;
  background: #1f2a37;
  color: #fff;
  cursor: pointer;
}

.footer-bottom {
  margin-top: 50px;
  padding-top: 20px;
  border-top: 1px solid rgba(0,0,0,.08);
  text-align: center;
  color: #6b7280;
  font-size: 14px;
}

/* Responsive */
@media(max-width: 900px) {
  .footer-grid {
    grid-template-columns: 1fr;
  }
}
img.logo {
    max-height: 50px;
}


