:root{
--gold:#CAA354;
--gold-dark:#A77C2F;
--text:#252525;
--text-light:#555;
--bg:#FAF8F5;
}

html{
scroll-behavior:smooth;
}

body {
  margin: 0;
  padding: 0;
  font-family: "Segoe UI", sans-serif;
  color: var(--text);

  background-color: #faf8f5;
  background-repeat: no-repeat;
  background-attachment: fixed;
}

/* NAVBAR */

header{
  position:relative;
  z-index:1000;
}

.hero-navbar{
  position:fixed;
  top:0;
  width:100%;
  z-index:9999;

  background:rgba(255,255,255,.58);
  -webkit-backdrop-filter:blur(5px);
  backdrop-filter:blur(5px);

  border-bottom:1px solid rgba(201,164,92,.10);
  box-shadow:none;

  transition:
    background-color .35s ease,
    -webkit-backdrop-filter .35s ease,
    backdrop-filter .35s ease,
    box-shadow .35s ease,
    border-color .35s ease;
}

.hero-navbar.scrolled{
  background:rgba(255,255,255,.94);
  -webkit-backdrop-filter:blur(16px);
  backdrop-filter:blur(16px);
  border-bottom-color:rgba(201,164,92,.20);
  box-shadow:0 10px 32px rgba(0,0,0,.09);
}

.navbar-brand{
  display:flex;
  align-items:center;
  gap:10px;
  padding:0;
  line-height:1;
  text-decoration:none;
}

.navbar-brand img{
  width:auto;
  height:46px;
}

.brand-text{
  display:flex;
  flex-direction:column;
  line-height:1.1;
}

.brand-text span{
  color:var(--text);
  font-size:24px;
  font-weight:700;
}

.brand-text small{
  margin-top:4px;
  color:var(--gold);
  font-size:11px;
  letter-spacing:2px;
  text-transform:uppercase;
}

.hero-navbar .nav-link{
  position:relative;
  color:var(--text);
  font-weight:500;
  transition:color .25s ease;
}

.hero-navbar .nav-link:hover,
.hero-navbar .nav-link:focus{
  color:var(--gold);
}

.nav-cta{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding:12px 24px;
  border-radius:4px;
  background:var(--gold);
  color:#fff;
  font-weight:600;
  text-decoration:none;
  transition:background-color .3s ease, transform .3s ease;
}

.nav-cta:hover{
  background:var(--gold-dark);
  color:#fff;
  transform:translateY(-1px);
}

.navbar-toggler{
  border:0;
  box-shadow:none !important;
}
/* HERO */

.hero-section{
min-height:100vh;
background-image:url("/assets/img/mainpage/hero-minekartal.webp");
background-size:cover;
background-position:center center;
background-repeat:no-repeat;
overflow:hidden;
position:relative;
padding: 130px;
}


.hero-container{
min-height:calc(100vh - 90px);
display:flex;
align-items:center;
}

.hero-content{
max-width:650px;
}

.hero-badge{
display:inline-block;
color:var(--gold);
text-transform:uppercase;
letter-spacing:3px;
font-size:14px;
font-weight:600;
margin-bottom:24px;
}

.hero-title{

font-size:clamp(48px,5vw,78px);
line-height:1.05;
font-weight:700;
margin-top: 5px;
margin-bottom:24px;
}

.hero-title span{
display:block;
color:var(--gold-dark);
}

.hero-slogan{
font-size:22px;
color:var(--gold);
font-style:italic;
margin-bottom:20px;
}

.hero-description{
font-size:17px;
line-height:1.8;
color:var(--text-light);
margin-bottom:32px;
}

.reviews-section {
  padding: 100px 0;
  background: #fafafa;
}

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
  margin-top: 50px;
}

.review-card {
  background: #fff;
  padding: 30px;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0,0,0,.06);
  transition: .3s ease;
  height: 100%;
}

.review-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(0,0,0,.1);
}

.review-card .stars {
  color: #f5b301;
  font-size: 20px;
  margin-bottom: 15px;
  letter-spacing: 2px;
}

.review-card p {
  color: #555;
  line-height: 1.8;
  margin-bottom: 20px;
  font-size: 15px;
}

.review-card h4 {
  margin: 0;
  color: #222;
  font-size: 16px;
  font-weight: 600;
}

.review-card small {
  color: #888;
  display: block;
  margin-top: 6px;
}

@media (max-width: 992px) {
  .reviews-grid {
    grid-template-columns: 1fr;
  }
}

/* FEATURES */

.hero-features{
display:flex;
flex-wrap:wrap;
gap:24px;
margin-bottom:30px;
}

.feature-item{
display:flex;
align-items:center;
gap:10px;
}

.feature-item i{
color:var(--gold);
font-size:22px;
}

.feature-item span{
font-size:15px;
font-weight:500;
}

/* BUTTONS */

.hero-buttons{
display:flex;
flex-wrap:wrap;
gap:16px;
}

.btn-hero-primary{
background:var(--gold);
color:#fff;
text-decoration:none;
padding:14px 30px;
border-radius:4px;
font-weight:600;
transition:.3s;
}

.btn-hero-primary:hover{
background:var(--gold-dark);
color:#fff;
}

.btn-hero-outline{
border:1px solid var(--gold);
color:var(--text);
text-decoration:none;
padding:14px 30px;
border-radius:4px;
font-weight:600;
transition:.3s;
}

.btn-hero-outline:hover{
background:var(--gold);
color:#fff;
}

/* SECTIONS */

section{
  padding:100px 0;
}

/* MOBILE */

@media(max-width:991px){

  .hero-section::before{
    content:"";
    position:absolute;
    inset:0;
    background:rgba(250,248,245,.82);
  }

  .hero-navbar{
    position:fixed;
    top:0;
    z-index:9999;
  }

  .hero-container{
    position:relative;
    z-index:2;
  }

  .navbar-collapse{
    margin-top:12px;
    padding:18px;
    border:1px solid rgba(202,163,84,.15);
    border-radius:12px;
    background:rgba(255,255,255,.98);
    box-shadow:0 14px 35px rgba(0,0,0,.08);
  }

  .navbar-nav{
    gap:8px;
  }

  .nav-cta{
    width:100%;
    margin-top:8px;
  }

  .hero-content{
    max-width:100%;
    text-align:center;
  }

  .hero-features,
  .hero-buttons{
    justify-content:center;
  }

  .hero-title{
    font-size:48px;
  }
}

@media(max-width:576px){

  section{
    padding:70px 0;
  }

  .hero-title{
    font-size:38px;
  }

  .hero-slogan{
    font-size:18px;
  }

  .hero-description{
    font-size:15px;
  }

  .hero-features{
    flex-direction:column;
    align-items:center;
    gap:15px;
  }

  .btn-hero-primary,
  .btn-hero-outline{
    width:100%;
    text-align:center;
  }

  .navbar-brand span{
    font-size:22px;
  }
}

.services-section{
  padding:110px 0;
  background:#fff;
}

.section-heading{
max-width:780px;
margin:0 auto;
}

.section-badge{
display:inline-block;
color:var(--gold);
font-size:14px;
font-weight:600;
letter-spacing:3px;
text-transform:uppercase;
margin-bottom:16px;
}

.section-heading h2{
font-size:clamp(34px,4vw,56px);
font-weight:700;
color:var(--text);
margin-bottom:18px;
}

.section-heading p{
color:var(--text-light);
font-size:17px;
line-height:1.8;
}

.service-card{
height:100%;
background:#FAF8F5;
border:1px solid rgba(202,163,84,.18);
border-radius:26px;
padding:34px;
transition:.35s ease;
}

.service-card:hover{
transform:translateY(-8px);
box-shadow:0 25px 70px rgba(37,37,37,.08);
border-color:rgba(202,163,84,.45);
}

.service-icon{
width:62px;
height:62px;
border-radius:50%;
background:rgba(202,163,84,.13);
display:flex;
align-items:center;
justify-content:center;
margin-bottom:24px;
}

.service-icon i{
font-size:28px;
color:var(--gold);
}

.service-card h3{
font-size:23px;
font-weight:700;
color:var(--text);
margin-bottom:14px;
}

.service-card p{
color:var(--text-light);
font-size:15.5px;
line-height:1.75;
margin-bottom:24px;
}

.service-card a{
display:inline-flex;
align-items:center;
gap:8px;
color:var(--gold-dark);
text-decoration:none;
font-weight:600;
}

.service-card a:hover{
color:var(--gold);
}

@media(max-width:576px){
.services-section{
padding:80px 0;
}

.service-card{
padding:28px;
}
}

.about-section{
  padding:50px 0;
  background:#f6f1e8;
}

.about-image-wrapper{
position:relative;
}

.about-image{
width:100%;
border-radius:28px;
display:block;
}

.experience-card{
position:absolute;
left:-20px;
top:30px;

width:140px;
height:140px;

background:#CAA354;
color:#fff;

border-radius:24px;

display:flex;
flex-direction:column;
justify-content:center;
align-items:center;

box-shadow:0 20px 50px rgba(0,0,0,.15);
}

.experience-card span{
font-size:42px;
font-weight:700;
line-height:1;
}

.experience-card small{
font-size:14px;
text-align:center;
}

.about-title{
font-size:clamp(34px,4vw,56px);
font-weight:700;
margin-bottom:24px;
}

.about-lead{
font-size:20px;
line-height:1.8;
color:#555;
margin-bottom:24px;
}

.about-section p{
color:#666;
line-height:1.9;
}

.about-stats{
display:flex;
flex-wrap:wrap;
gap:20px;
margin-top:40px;
}

.stat-box{
background:#FAF8F5;
border:1px solid rgba(202,163,84,.2);
border-radius:18px;
padding:24px;
min-width:170px;
}

.stat-box h3{
color:#CAA354;
font-size:32px;
font-weight:700;
margin-bottom:6px;
}

.stat-box span{
color:#555;
font-size:14px;
}

@media(max-width:991px){

.experience-card{
left:20px;
top:20px;
}

.about-section{
text-align:center;
}

.about-stats{
justify-content:center;
}
}
.instagram-section {
  padding: 90px 0;
  background:#f6f1e8;
}

.section-heading {
  text-align: center;
  margin-bottom: 45px;
}

.section-heading span {
  color: #b9945b;
  font-weight: 600;
  letter-spacing: 1px;
}

.section-heading h2 {
  font-size: 36px;
  margin: 10px 0;
  color: #1f1f1f;
}

.section-heading p {
  color: #666;
  max-width: 620px;
  margin: 0 auto;
}


/* instagram */
.instagram-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
}

.instagram-card {
  position: relative;
  display: block;
  height: 530px;
  border-radius: 24px;
  overflow: hidden;
  text-decoration: none;
  box-shadow: 0 18px 40px rgba(0,0,0,0.12);
}

.instagram-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: 0.4s ease;
}

.instagram-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(0,0,0,0.05),
    rgba(0,0,0,0.55)
  );
}

.instagram-card:hover img {
  transform: scale(1.06);
}

.play-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 2;
  transform: translate(-50%, -50%);
  width: 72px;
  height: 72px;
  border: 2px solid #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 28px;
  background: rgba(255,255,255,0.18);
  backdrop-filter: blur(5px);
}

.instagram-card h3 {
  position: absolute;
  top: 28px;
  left: 24px;
  right: 24px;
  z-index: 2;
  color: #fff;
  font-size: 20px;
  font-weight: 700;
}

.instagram-button-wrap {
  text-align: center;
  margin-top: 40px;
}

.instagram-main-btn {
  display: inline-block;
  padding: 15px 32px;
  background: #b9945b;
  color: #fff;
  border-radius: 40px;
  text-decoration: none;
  font-weight: 600;
  transition: 0.3s ease;
}

.instagram-main-btn:hover {
  background: #9f7d49;
  transform: translateY(-3px);
}

@media (max-width: 992px) {
  .instagram-grid {
    grid-template-columns: 1fr;
  }

  .instagram-card {
    height: 520px;
  }
}

@media (max-width: 576px) {
  .instagram-section {
    padding: 65px 0;
  }

  .section-heading h2 {
    font-size: 28px;
  }

  .instagram-card {
    height: 460px;
  }
}

.clinic-gallery-grid {
  display: grid;
  grid-template-columns: 1.7fr 1fr 1fr;
  grid-template-rows: 190px 320px; /* alt satır büyüdü */
  gap: 18px;
}

.clinic-gallery-item {
  overflow: hidden;
  border-radius: 22px;
  background: #eee;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
}

.clinic-gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.45s ease;
}

.clinic-gallery-item:hover img {
  transform: scale(1.06);
}

/* Sol büyük fotoğraf */
.clinic-gallery-item:nth-child(1) {
  grid-column: 1;
  grid-row: 1 / 3;
}

/* Sağ üst sol */
.clinic-gallery-item:nth-child(2) {
  grid-column: 2;
  grid-row: 1;
}

/* Sağ üst sağ */
.clinic-gallery-item:nth-child(3) {
  grid-column: 3;
  grid-row: 1;
}

/* Sağ alt geniş */
.clinic-gallery-item:nth-child(4) {
  grid-column: 2 / 4;
  grid-row: 2;
}

@media (max-width: 992px) {
  .clinic-gallery-grid {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto;
  }

  .clinic-gallery-item:nth-child(1),
  .clinic-gallery-item:nth-child(2),
  .clinic-gallery-item:nth-child(3),
  .clinic-gallery-item:nth-child(4) {
    grid-column: auto;
    grid-row: auto;
    height: 240px;
  }
}

@media (max-width: 576px) {
  .clinic-gallery-grid {
    grid-template-columns: 1fr;
  }

  .clinic-gallery-item {
    height: 240px;
  }
}


/* SSS  */
.faq-section {
  padding: 80px 0;
  background: #fff;
}

.faq-container {
  max-width: 900px;
  margin: 50px auto 0;
}

.faq-item {
  background: #fafafa;
  border-radius: 18px;
  margin-bottom: 16px;
  overflow: hidden;
  box-shadow: 0 8px 25px rgba(0,0,0,.05);
}

.faq-question {
  width: 100%;
  background: transparent;
  border: none;
  padding: 22px 26px;
  font-size: 16px;
  font-weight: 600;
  color: #222;
  text-align: left;
  cursor: pointer;
  position: relative;
}

.faq-question::after {
  content: "+";
  position: absolute;
  right: 26px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 24px;
  color: #a67c52;
}

.faq-item.active .faq-question::after {
  content: "-";
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height .3s ease;
}

.faq-answer p {
  padding: 0 26px 24px;
  color: #555;
  line-height: 1.8;
  font-size: 15px;
  margin: 0;
}

@media (max-width: 576px) {
  .faq-section {
    padding: 70px 0;
  }

  .faq-question {
    padding: 20px 50px 20px 20px;
    font-size: 15px;
  }

  .faq-answer p {
    padding: 0 20px 22px;
  }
}

.appointment-section {
  padding: 100px 0;
  background: #fafafa;
}

.appointment-box {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
  background: #fff;
  padding: 50px;
  border-radius: 28px;
  box-shadow: 0 15px 40px rgba(0,0,0,.08);
}

.appointment-content span {
  color: #a67c52;
  font-weight: 600;
  font-size: 14px;
}

.appointment-content h2 {
  font-size: 34px;
  color: #222;
  margin: 12px 0 18px;
}

.appointment-content p {
  color: #555;
  line-height: 1.8;
  font-size: 16px;
}

.appointment-form textarea {
  width: 100%;
  resize: none;
  border: 1px solid #e5e5e5;
  border-radius: 18px;
  padding: 18px;
  font-size: 15px;
  outline: none;
  font-family: inherit;
  color: #333;
}

.appointment-form textarea:focus {
  border-color: #a67c52;
}

.appointment-form button {
  margin-top: 18px;
  width: 100%;
  border: none;
  background: #25D366;
  color: #fff;
  padding: 16px 24px;
  border-radius: 999px;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  transition: .3s ease;
}

.appointment-form button:hover {
  transform: translateY(-3px);
  opacity: .9;
}

@media (max-width: 768px) {
  .appointment-box {
    grid-template-columns: 1fr;
    padding: 30px;
  }

  .appointment-content h2 {
    font-size: 26px;
  }
}

.footer {
background: #111;
color: #fff;
padding-top: 55px;
}

.footer-grid {
display: grid;
grid-template-columns: 1.5fr 1fr 1fr;
gap: 60px;
padding-bottom: 50px;
align-items: start;
}

.footer-col {
align-self: start;
}

.footer-brand img {
width: 120px;
height: auto;
display: block;
margin-bottom: 20px;
}

.footer-brand h3 {
margin: 0 0 8px;
font-size: 20px;
font-weight: 700;
color: #fff;
line-height: 1.3;
}

.footer-brand span {
display: block;
color: var(--gold);
text-transform: uppercase;
letter-spacing: 2px;
font-size: 11px;
margin-bottom: 18px;
}

.footer-brand p {
max-width: 350px;
}

.footer-col h4 {
margin: 0 0 20px;
font-size: 18px;
font-weight: 700;
color: #fff;
}

.footer-col p,
.footer-col li,
.footer-col a {
color: rgba(255,255,255,.75);
line-height: 1.9;
text-decoration: none;
font-size: 15px;
}

.footer-col ul {
list-style: none;
padding: 0;
margin: 0;
}

.footer-col li {
margin-bottom: 8px;
}

.footer-col a:hover {
color: var(--gold);
}

.footer-disclaimer {
border-top: 1px solid rgba(255,255,255,.08);
border-bottom: 1px solid rgba(255,255,255,.08);
padding: 25px 0;
}

.footer-disclaimer p {
color: rgba(255,255,255,.65);
font-size: 14px;
line-height: 1.8;
margin: 0;
}

.footer-bottom {
padding: 25px 0;
display: flex;
justify-content: space-between;
align-items: center;
gap: 20px;
flex-wrap: wrap;
}

.footer-bottom p,
.footer-bottom a {
color: rgba(255,255,255,.75);
font-size: 14px;
text-decoration: none;
margin: 0;
}

.footer-bottom a:hover {
color: var(--gold);
}

@media (max-width: 992px) {


.footer-grid {
    grid-template-columns: 1fr;
    gap: 40px;
}

.footer-brand img {
    width: 80px;
}

.footer-bottom {
    flex-direction: column;
    text-align: center;
}


}

.contact-map-section {
  padding: 100px 0;
  background: #fafafa;
}

.contact-map-wrapper {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 30px;
  margin-top: 50px;
  align-items: stretch;
}

.map-box {
  min-height: 480px;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
  background: #fff;
}

.map-box iframe {
  width: 100%;
  height: 100%;
  display: block;
}

.contact-info-card {
  background: #fff;
  border-radius: 24px;
  padding: 35px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
}

.contact-info-card h3 {
  font-size: 24px;
  color: #222;
  margin-bottom: 30px;
}

.contact-item {
  margin-bottom: 24px;
}

.contact-item span {
  display: block;
  font-size: 14px;
  color: #a67c52;
  font-weight: 600;
  margin-bottom: 8px;
}

.contact-item p,
.contact-item a {
  color: #444;
  font-size: 15px;
  line-height: 1.7;
  text-decoration: none;
  margin: 0;
}

.contact-buttons {
  display: flex;
  gap: 12px;
  margin-top: 30px;
  flex-wrap: wrap;
}

.direction-btn,
.whatsapp-contact-btn {
  display: inline-block;
  padding: 13px 20px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  transition: 0.3s ease;
}

.direction-btn {
  background: #222;
  color: #fff;
}

.whatsapp-contact-btn {
  background: #25D366;
  color: #fff;
}

.direction-btn:hover,
.whatsapp-contact-btn:hover {
  transform: translateY(-3px);
  opacity: 0.9;
}

@media (max-width: 992px) {
  .contact-map-wrapper {
    grid-template-columns: 1fr;
  }

  .map-box {
    min-height: 380px;
  }
}

@media (max-width: 576px) {
  .contact-map-section {
    padding: 70px 0;
  }

  .contact-info-card {
    padding: 25px;
  }

  .contact-buttons {
    flex-direction: column;
  }

  .direction-btn,
  .whatsapp-contact-btn {
    text-align: center;
    width: 100%;
  }

  .map-box {
    min-height: 320px;
  }
}




.certificates-section {
  padding: 100px 0;
  background: #fff;
}

.certificates-slider {
  margin-top: 50px;
  overflow: hidden;
  position: relative;
}

.certificates-track {
  display: flex;
  gap: 24px;
  width: max-content;
  animation: certificateSlide 20s linear infinite;
}

.certificates-slider:hover .certificates-track {
  animation-play-state: paused;
}

.certificates-track img {
  width: 300px;
  height: 200px;
  object-fit: contain;
  border-radius: 18px;
  cursor: pointer;
  box-shadow: 0 12px 30px rgba(0,0,0,.08);
  transition: .3s ease;
}

.certificates-track img:hover {
  transform: translateY(-8px) scale(1.03);
  box-shadow: 0 18px 45px rgba(0,0,0,.14);
}

@keyframes certificateSlide {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

.certificate-popup {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.82);
  display: none;
  justify-content: center;
  align-items: center;
  z-index: 9999;
  padding: 30px;
}

.certificate-popup.active {
  display: flex;
}

.certificate-popup img {
  max-width: 90%;
  max-height: 90vh;
  border-radius: 12px;
  background: #fff;
  box-shadow: 0 20px 60px rgba(0,0,0,.4);
}

.certificate-close {
  position: absolute;
  top: 25px;
  right: 35px;
  font-size: 42px;
  color: #fff;
  cursor: pointer;
  z-index: 10000;
}

@media (max-width: 768px) {
  .certificates-section {
    padding: 70px 0;
  }

  .certificates-track img {
    width: 180px;
    height: 250px;
  }

  .certificate-popup img {
    max-width: 95%;
    max-height: 80vh;
  }
}



 /* ALT SAYFA BANNER SİSTEMİ */

.page-banner {
  position: relative;
  min-height: 420px;
  padding: 110px 0 70px;
  display: flex;
  align-items: center;
  overflow: hidden;

  background-image: var(--banner-image);
  background-size: var(--banner-size, cover);
  background-position: var(--banner-position, center 25%);
  background-repeat: no-repeat;
}

/* Her banner kendi geçişini belirleyebilir */
.page-banner::before {
  content: "";
  position: absolute;
  inset: 0;
  background: var(
    --banner-overlay,
    linear-gradient(
      90deg,
      rgba(250, 248, 245, 0.97) 0%,
      rgba(250, 248, 245, 0.88) 37%,
      rgba(250, 248, 245, 0.42) 62%,
      rgba(250, 248, 245, 0.08) 100%
    )
  );
  pointer-events: none;
}

/* Banner ile beyaz içerik arasında yumuşak geçiş */
.page-banner::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 70px;
  background: linear-gradient(
    to bottom,
    rgba(250, 248, 245, 0),
    var(--bg)
  );
  pointer-events: none;
}

.page-banner .container {
  position: relative;
  z-index: 2;
}

.page-banner-content {
  max-width: 650px;
}

.page-banner-subtitle {
  display: inline-block;
  margin-bottom: 14px;
  color: var(--gold-dark);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
}

.page-banner h1 {
  margin: 0 0 18px;
  color: var(--text);
  font-size: clamp(2.3rem, 5vw, 3.7rem);
  font-weight: 700;
  line-height: 1.12;
}

.page-banner p {
  max-width: 590px;
  margin: 0;
  color: var(--text-light);
  font-size: 1.05rem;
  line-height: 1.8;
}

/* Yazının sağda olması gereken özel bannerlar */
.page-banner.content-right .page-banner-content {
  margin-left: auto;
}

.page-banner.content-center .page-banner-content {
  max-width: 760px;
  margin-right: auto;
  margin-left: auto;
  text-align: center;
}

/* BAĞIŞIKLIK TEDAVİLERİ */
.banner-hizmetler-bagisikliktedavileri {
  --banner-image: url("/assets/img/banner/banner-hizmetler-bagisikliktedavileri.webp");
  --banner-position: center right;
  --banner-position-mobile: 78% center;
}

/* BOTOKS */
.banner-hizmetler-botoks {
  --banner-image: url("/assets/img/banner/banner-hizmetler-botoks.webp");
  --banner-position: center right;
  --banner-position-mobile: 78% center;
}
/* AMELİYATSIZ ESTETİK */
.banner-hizmetler-ameliyatsizestetik {
  --banner-image: url("/assets/img/banner/banner-hizmetler-ameliyatsizestetik.webp");
  --banner-position: center right;
  --banner-position-mobile: 78% center;
}

/* SAÇ TEDAVİLERİ */
.banner-hizmetler-sactedavileri {
  --banner-position-mobile: 38% center;
  --banner-image:
    url("/assets/img/banner/banner-hizmetler-sactedavileri.webp");

  --banner-size: cover;
  --banner-position: center center;

  --banner-overlay: linear-gradient(
    90deg,
    rgba(250, 248, 245, 0.96) 0%,
    rgba(250, 248, 245, 0.82) 35%,
    rgba(250, 248, 245, 0.25) 65%,
    rgba(250, 248, 245, 0.04) 100%
  );
}

/* MEZOTERAPİ */
.banner-hizmetler-mezoterapi {
  --banner-position-mobile: 78% center;
  --banner-image:
    url("/assets/img/banner/banner-hizmetler-mezoterapi.webp");

  --banner-size: cover;
  --banner-position: center center;

  --banner-overlay: linear-gradient(
    90deg,
    rgba(250, 248, 245, 0.96) 0%,
    rgba(250, 248, 245, 0.82) 35%,
    rgba(250, 248, 245, 0.25) 65%,
    rgba(250, 248, 245, 0.04) 100%
  );
}


/* CİLT GENÇLEŞTİRME */
.banner-hizmetler-genclestirme {
  --banner-position-mobile: 50% center;
  --banner-image: url("/assets/img/banner/banner-hizmetler-genclestirme.webp");
  --banner-position: center center;
  --banner-overlay: linear-gradient(
    190deg,
    rgba(250, 248, 245, 0.55) 0%,
    rgba(250, 248, 245, 0.16) 48%,
    rgba(250, 248, 245, 0.20) 100%
  );
}

/* KVKK */
.banner-kvkk {
  --banner-position-mobile: 34% center;
  --banner-image: url("/assets/img/banner/banner-kvkk.webp");
  --banner-position: center center;

  --banner-overlay: linear-gradient(
    90deg,
    rgba(250, 248, 245, 0.76) 0%,
    rgba(250, 248, 245, 0.42) 48%,
    rgba(250, 248, 245, 0.16) 100%
  );
}



@media (max-width: 991px) {
  .page-banner {
    min-height: 350px;
    padding: 115px 0 65px;
    background-position: var(
      --banner-position-mobile,
      var(--banner-position, center)
    );
  }

  .page-banner::before {
    background: var(
      --banner-overlay-mobile,
      linear-gradient(
        rgba(250, 248, 245, 0.89),
        rgba(250, 248, 245, 0.89)
      )
    );
  }

  .page-banner-content,
  .page-banner.content-right .page-banner-content {
    max-width: 100%;
    margin: 0 auto;
    text-align: center;
  }

  .page-banner p {
    max-width: 700px;
    margin: 0 auto;
  }
}


@media (max-width: 767.98px) {
  .page-banner {
    background-position: var(--banner-position-mobile, var(--banner-position, center 15%));
  }
}

@media (max-width: 576px) {
  .page-banner {
    min-height: 310px;
    padding: 110px 20px 60px;
  }

  .page-banner h1 {
    font-size: 2rem;
  }

  .page-banner p {
    font-size: 0.95rem;
    line-height: 1.65;
  }

  .page-banner-subtitle {
    font-size: 0.75rem;
    letter-spacing: 2px;
  }
}

/* KVKK SAYFASI */
.legal-header {
  background: #fff;
  border-bottom: 1px solid #eee;
  padding: 18px 0;
}

.legal-nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.legal-logo {
  font-size: 20px;
  font-weight: 700;
  color: #222;
  text-decoration: none;
}

.back-home {
  color: #a67c52;
  text-decoration: none;
  font-weight: 600;
}

.legal-page {
    padding: 40px 0;
}

.legal-container {
    width: min(1200px, 92%);
    margin: 0 auto;
}
.legal-label {
  color: #a67c52;
  font-weight: 700;
  letter-spacing: 1px;
}

.legal-container h1 {
  font-size: 36px;
  margin: 15px 0 30px;
  color: #222;
}

.legal-container h2 {
  font-size: 22px;
  margin-top: 35px;
  color: #222;
}

.legal-container p {
  color: #555;
  line-height: 1.8;
  font-size: 16px;
}

.legal-contact-box {
  background: #fafafa;
  border-left: 4px solid #a67c52;
  padding: 20px;
  border-radius: 14px;
  margin-top: 25px;
}

.legal-contact-box a {
  color: #222;
  text-decoration: none;
}

.legal-note {
  margin-top: 35px;
  font-size: 14px !important;
  color: #888 !important;
}

@media (max-width: 768px) {
  .legal-page {
    padding: 50px 0;
  }

  .legal-container {
    padding: 30px 22px;
  }

  .legal-container h1 {
    font-size: 28px;
  }

  .legal-nav {
    gap: 15px;
  }

  .back-home {
    font-size: 14px;
  }
}

.legal-footer {
    border-top: 1px solid #eee;
    padding: 30px 0;
    background: #fff;
}

.legal-footer .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
}

.legal-footer p {
    margin: 0;
    color: #777;
    font-size: 14px;
}

.footer-links {
    display: flex;
    gap: 20px;
}

.footer-links a {
    text-decoration: none;
    color: #555;
    font-size: 14px;
}

.footer-links a:hover {
    color: #a67c52;
}

/* hizmetler */
.service-detail-hero {
  padding: 140px 0 90px;
  background: linear-gradient(135deg, #faf7f3, #ffffff);
  text-align: center;
}

.service-detail-hero span {
  color: #a67c52;
  font-weight: 700;
  letter-spacing: 1px;
}

.service-detail-hero h1 {
  font-size: 48px;
  margin: 18px 0;
  color: #222;
}

.service-detail-hero p {
  max-width: 760px;
  margin: 0 auto;
  color: #555;
  font-size: 17px;
  line-height: 1.8;
}

.service-info-section {
  padding: 80px 0;
  background: #fff;
}

.service-info-section .container {
  max-width: 950px;
}

.service-info-section h2 {
  font-size: 30px;
  color: #222;
  margin-bottom: 18px;
}

.service-info-section p {
  color: #555;
  font-size: 16px;
  line-height: 1.9;
  margin-bottom: 35px;
}

.service-subcards-section {
  padding: 90px 0;
  background: #fafafa;
}

.service-subcards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
  margin-top: 50px;
}

.service-subcard {
  position: relative;
  display: block;
  background: #fff;
  padding: 32px;
  border-radius: 22px;
  text-decoration: none;
  min-height: 230px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0,0,0,.06);
  transition: .3s ease;
}

.service-subcard h3 {
  color: #222;
  font-size: 21px;
  margin-bottom: 15px;
}

.service-subcard p {
  color: #666;
  line-height: 1.7;
  font-size: 15px;
}

.service-subcard:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 18px 45px rgba(0,0,0,.12);
}

.read-more-hover {
  position: absolute;
  left: 0;
  bottom: -60px;
  width: 100%;
  padding: 18px;
  background: #a67c52;
  color: #fff;
  text-align: center;
  font-weight: 600;
  transition: .3s ease;
}

.service-subcard:hover .read-more-hover {
  bottom: 0;
}

@media (max-width: 992px) {
  .service-subcards-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .service-detail-hero h1 {
    font-size: 38px;
  }
}

@media (max-width: 576px) {
  .service-subcards-grid {
    grid-template-columns: 1fr;
  }

  .service-detail-hero {
    padding: 110px 0 70px;
  }

  .service-detail-hero h1 {
    font-size: 32px;
  }

  .service-subcard {
    min-height: auto;
    padding-bottom: 70px;
  }
}

.section-title{
  margin-bottom:45px;
  text-align:center;
}

.section-title span{
  color:var(--gold);
  font-weight:700;
  letter-spacing:2px;
  text-transform:uppercase;
}

.section-title h2{
  margin:10px 0 0;
  color:var(--text);
  font-size:clamp(30px,4vw,48px);
  font-weight:700;
}


.certificates-section{
    background:#ffffff !important;
}

.clinic-gallery-section{
    background:#ffffff !important;
}

.contact-map-section{
    background:#f6f1e8 !important;
}

.faq-section{
    background:#ffffff !important;
}

.appointment-section{
    background:#f6f1e8 !important;
}

.whatsapp-float{
    position:fixed;
    right:25px;
    bottom:25px;

    width:62px;
    height:62px;

    border-radius:50%;

    background:#25D366;
    color:#fff !important;

    display:flex;
    align-items:center;
    justify-content:center;

    text-decoration:none;

    font-size:34px;

    z-index:99999;

    box-shadow:0 10px 30px rgba(37,211,102,.30);

    transition:.3s ease;
}

.whatsapp-float i{
    position:relative;
    z-index:2;
}

.whatsapp-float::before{

    content:"";

    position:absolute;

    inset:-4px;

    border-radius:50%;

    background:rgba(37,211,102,.35);

    animation:whatsappPulse 2s infinite;

    z-index:1;
}

.whatsapp-float:hover{

    transform:translateY(-4px);

    box-shadow:0 18px 40px rgba(37,211,102,.45);

}

@keyframes whatsappPulse{

    0%{
        transform:scale(.9);
        opacity:.7;
    }

    70%{
        transform:scale(1.45);
        opacity:0;
    }

    100%{
        transform:scale(1.45);
        opacity:0;
    }

}

@media(max-width:768px){

    .whatsapp-float{

        width:56px;
        height:56px;

        right:18px;
        bottom:18px;

        font-size:30px;
    }

}
}

/* MOBILE HERO — COMPACT, READABLE, IMAGE-FRIENDLY */
@media (max-width: 991px) {
  .hero-section {
    background-position: 68% center;
    padding: 118px 24px 64px;
  }
}

@media (max-width: 576px) {
  .hero-section {
    min-height: 660px;
    padding: 100px 16px 30px;
    background-position: 70% 36%;
  }

  .hero-section::before {
    background: linear-gradient(
      180deg,
      rgba(250,248,245,.93) 0%,
      rgba(250,248,245,.86) 38%,
      rgba(250,248,245,.62) 67%,
      rgba(250,248,245,.76) 100%
    );
  }

  .hero-container {
    min-height: 530px;
    align-items: flex-start;
  }

  .hero-content {
    width: 100%;
    max-width: 100%;
    text-align: center;
  }

  .hero-title {
    max-width: 350px;
    margin: 0 auto 12px;
    font-size: clamp(30px, 9vw, 36px);
    line-height: 1.03;
  }

  .hero-slogan {
    max-width: 310px;
    margin: 0 auto 18px;
    font-size: 16px;
    line-height: 1.45;
  }

  /* Uzun açıklama mobil hero'yu gereksiz yere 2 ekrana uzatıyordu.
     İçerik sayfada mevcut kalıyor; mobilde hero içinde gizleniyor. */
  .hero-description {
    display: none;
  }

  .hero-features {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    align-items: start;
    gap: 8px;
    width: 100%;
    margin: 240px 0 16px;
  }

  .feature-item {
    flex-direction: column;
    justify-content: flex-start;
    gap: 5px;
    min-width: 0;
    text-align: center;
  }

  .feature-item i {
    font-size: 20px;
  }

  .feature-item span {
    font-size: 12px;
    line-height: 1.25;
  }

  .hero-buttons {
    display: grid;
    grid-template-columns: 1fr;
    gap: 9px;
    width: 100%;
  }

  .btn-hero-primary,
  .btn-hero-outline {
    width: 100%;
    padding: 11px 16px;
    font-size: 14px;
    line-height: 1.3;
  }
}

@media (max-width: 360px) {
  .hero-section {
    min-height: 640px;
    padding-left: 12px;
    padding-right: 12px;
    background-position: 69% 34%;
  }

  .hero-title {
    font-size: 29px;
  }

  .hero-features {
    margin-top: 225px;
    gap: 5px;
  }

  .feature-item span {
    font-size: 11px;
  }
}


/* MOBILE HERO — FINAL WITH DESCRIPTION */
@media (max-width: 576px) {
  .hero-section {
    min-height: 760px !important;
    padding: 112px 16px 32px !important;
    background-position: 70% 40% !important;
  }

  .hero-section::before {
    background: linear-gradient(
      180deg,
      rgba(250,248,245,.95) 0%,
      rgba(250,248,245,.88) 39%,
      rgba(250,248,245,.60) 66%,
      rgba(250,248,245,.80) 100%
    ) !important;
  }

  .hero-container {
    min-height: 0 !important;
    align-items: flex-start !important;
  }

  .hero-content {
    width: 100% !important;
    max-width: 100% !important;
    text-align: center !important;
  }

  .hero-title {
    max-width: 360px !important;
    margin: 0 auto 12px !important;
    font-size: clamp(29px, 8.6vw, 35px) !important;
    line-height: 1.04 !important;
  }

  .hero-slogan {
    max-width: 340px !important;
    margin: 0 auto 14px !important;
    font-size: 16px !important;
    line-height: 1.45 !important;
  }

  .hero-description {
    display: block !important;
    max-width: 355px !important;
    margin: 0 auto 18px !important;
    font-size: 14px !important;
    line-height: 1.55 !important;
    color: #555 !important;
  }

  .hero-features {
    display: grid !important;
    grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
    align-items: start !important;
    gap: 8px !important;
    width: 100% !important;
    margin: 105px 0 16px !important;
  }

  .feature-item {
    flex-direction: column !important;
    justify-content: flex-start !important;
    gap: 5px !important;
    min-width: 0 !important;
    text-align: center !important;
  }

  .feature-item i {
    font-size: 20px !important;
  }

  .feature-item span {
    font-size: 12px !important;
    line-height: 1.22 !important;
  }

  .hero-buttons {
    display: grid !important;
    grid-template-columns: 1fr !important;
    gap: 9px !important;
    width: 100% !important;
    margin-top: 0 !important;
  }

  .btn-hero-primary,
  .btn-hero-outline {
    width: 100% !important;
    padding: 12px 16px !important;
    font-size: 14px !important;
    line-height: 1.3 !important;
  }
}

@media (max-width: 360px) {
  .hero-section {
    min-height: 780px !important;
    padding: 108px 12px 28px !important;
    background-position: 69% 40% !important;
  }

  .hero-title {
    font-size: 28px !important;
  }

  .hero-slogan {
    font-size: 15px !important;
  }

  .hero-description {
    max-width: 325px !important;
    font-size: 13.5px !important;
    line-height: 1.5 !important;
  }

  .hero-features {
    margin-top: 95px !important;
    gap: 5px !important;
  }

  .feature-item span {
    font-size: 11px !important;
  }
}
