:root {
  --bg: #0b0b15;
  --surface: #111a2b;
  --surface-strong: #151d30;
  --text: #f5f5f5;
  --muted: #cfd3dc;
  --brand: #f1c40f;
  --brand-dark: #d4ac0d;
  --whatsapp: #25d366;
  --border: rgba(255, 255, 255, 0.12);
  --header-height: 62px;
}

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

  html {
    scroll-behavior: smooth;
  }
  
  body {
    color: var(--text);
    background-color: var(--bg);
    line-height: 1.6;
    letter-spacing: 0;
    font-weight: 400;
    font-family: 'Nunito', Arial, sans-serif;
    overflow-x: hidden;
  }

  img,
  iframe {
    max-width: 100%;
  }

  a,
  button,
  input,
  textarea {
    font: inherit;
  }

  a:focus-visible,
  button:focus-visible,
  input:focus-visible,
  textarea:focus-visible {
    outline: 3px solid rgba(241, 196, 15, 0.45);
    outline-offset: 3px;
  }
  
  /* --- HEADER --- */
  header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    min-height: var(--header-height);
    padding: 8px clamp(18px, 5vw, 56px);
    background: rgba(15, 20, 35, 0.95);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 100;
  }
  
  .logo {
    font-size: clamp(20px, 3vw, 23px);
    font-weight: bold;
    text-decoration: none; /* link alt çizgisini kaldırır */
    color: #ffffff; /* yazı rengi */
  }
  .logo span {
    color: #EBB911; /* isteğe bağlı farklı renk */
  }
  
  
  nav ul {
    list-style: none;
    display: flex;
    gap: 25px;
  }
  
  nav a {
    color: #eaeaea;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s;
  }
  
  nav a:hover,
  nav a.active {
    color: #f1c40f;
  }
  
  .menu-toggle {
    display: none;
    font-size: 28px;
    cursor: pointer;
    color: #fff;
    background: transparent;
    border: 0;
    line-height: 1;
    width: 40px;
    height: 40px;
  }
  
  /* --- HERO --- */
  .hero {
    height: 100vh;
    min-height: 620px;
    background: linear-gradient(rgba(11,11,21,0.58), rgba(11,11,21,0.72)),
                url('../images/kibris-life-vip-hizmet.webp') center/cover no-repeat;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: calc(var(--header-height) + 20px) 20px 40px;
  }
  
  .hero-text {
    max-width: 700px;
  }
  
  .hero-text h1 {
    font-size: clamp(2.1rem, 6vw, 3.6rem);
    font-weight: 700;
    color: #EBB911;
    margin-bottom: 15px;
    text-shadow: 0 3px 8px rgba(0,0,0,0.6);
  }
  
  .hero-text p {
    font-size: clamp(1rem, 2vw, 1.18rem);
    color: #e0e0e0;
  }
  
  /* --- BUTONLAR --- */
  .button-group {
    margin-top: 30px;
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
  }
  
  .btn {
    display: inline-block;
    padding: 12px 28px;
    border-radius: 8px;
    text-decoration: none;
    background: #f1c40f;
    color: #111;
    font-weight: 600;
    transition: 0.3s;
    box-shadow: 0 4px 10px rgba(0,0,0,0.2);
  }
  
.btn:hover {
    background: #d4ac0d;
    box-shadow: 0 6px 12px rgba(0,0,0,0.3);
  }
  
  .whatsapp {
    background: #25D366;
    color: #fff;
  }
  
  .whatsapp:hover {
    background: #1ebe57;
  }
  
  /* --- FOOTER --- */
  footer {
    background: #111a2b;
    text-align: center;
    padding: 25px;
    font-size: 0.9em;
  }

  .footer-links {
    display: flex;
    flex-wrap: wrap;
    gap: 12px 18px;
    justify-content: center;
    margin-bottom: 14px;
  }

  .footer-links a {
    color: var(--muted);
    text-decoration: none;
  }

  .footer-links a:hover {
    color: var(--brand);
    text-decoration: underline;
  }
  
  /* --- RESPONSIVE --- */
  @media (max-width: 768px) {
    header {
      padding-inline: 18px;
    }

    nav ul {
      display: none;
      flex-direction: column;
      gap: 6px;
      position: absolute;
      top: calc(var(--header-height) - 2px);
      left: 18px;
      right: 18px;
      background: rgba(10, 12, 22, 0.98);
      padding: 12px;
      border-radius: 8px;
      z-index: 999;
      transition: all 0.3s ease;
      border: 1px solid var(--border);
      box-shadow: 0 16px 45px rgba(0, 0, 0, 0.35);
    }

    nav a {
      display: block;
      padding: 12px 10px;
    }
  
    nav ul.show {
      display: flex !important; /* Menü açılmadığında gizlenmesin */
    }
  
    .menu-toggle {
      display: block;
      font-size: 28px;
      cursor: pointer;
      user-select: none;
    }
  
    .hero-text h1 {
      font-size: clamp(2rem, 9vw, 2.75rem);
    }
  
    .hero-text p {
      font-size: 1em;
    }
  }


  /* --- SAYFA BAŞLIĞI (Hizmetler) --- */
.page-header {
    padding: calc(var(--header-height) + 48px) 20px 56px;
    text-align: center;
    background: linear-gradient(180deg, rgba(15,20,35,0.95), rgba(15,20,35,0.7));
  }
  
  .page-header h1 {
    font-size: clamp(2rem, 6vw, 2.8rem);
    color: #f1c40f;
    margin-bottom: 10px;
  }
  
  .page-header p {
    color: #ccc;
    font-size: clamp(1rem, 2vw, 1.1rem);
    max-width: 760px;
    margin: 0 auto;
  }
  
  /* --- HİZMET KARTLARI --- */
  .services-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(280px, 100%), 1fr));
    gap: 30px;
    padding: clamp(42px, 8vw, 72px) clamp(18px, 8vw, 10%);
    background: linear-gradient(180deg, #0b0b15, #111a2b);
  }
  
  .service-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    padding: 20px;
    text-align: center;
    backdrop-filter: blur(10px);
    transition: 0.3s;
  }
  
  .service-card:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.1);
  }
  
  .service-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 15px;
  }
  
  .service-card h2 {
    color: #f1c40f;
    font-size: 1.4em;
    margin-bottom: 10px;
  }
  
  .service-card p {
    font-size: 0.95em;
    color: #ddd;
    margin-bottom: 15px;
  }
  
  .service-card .price {
    font-weight: 700;
    color: #fff;
  }
  
  /* --- CALL TO ACTION (Rezervasyon) --- */
  .cta-section {
    text-align: center;
    padding: clamp(54px, 8vw, 80px) 20px;
    background: rgba(15, 20, 35, 0.95);
  }
  
  .cta-section h2 {
    font-size: 2em;
    margin-bottom: 10px;
    color: #f1c40f;
  }
  
  .cta-section p {
    color: #ccc;
    margin-bottom: 25px;
  }
  
  /* --- HİZMETLERDEN BAZILARI --- */
.services-preview {
  background: linear-gradient(180deg, #0b0b15, #111a2b);
  padding: clamp(54px, 8vw, 80px) clamp(18px, 8vw, 10%);
  text-align: center;
}

.small-btn {
  padding: 10px 18px;
  font-size: 0.92rem;
}

.text-link {
  color: var(--brand);
  display: inline-block;
  font-weight: 700;
  margin-top: 14px;
  text-decoration: none;
}

.text-link:hover {
  text-decoration: underline;
}

.services-preview h2 {
  color: #f1c40f;
  font-size: clamp(1.7rem, 5vw, 2.2rem);
  margin-bottom: 50px;
}

.preview-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(280px, 100%), 1fr));
  gap: 30px;
}

.preview-card {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 8px;
  padding: 20px;
  text-align: center;
  transition: 0.3s;
  border: 1px solid rgba(255,255,255,0.1);
}

.preview-card:hover {
  transform: translateY(-6px);
  background: rgba(255,255,255,0.08);
}

.preview-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 15px;
}

.preview-card h3 {
  color: #f1c40f;
  font-size: 1.2em;
  margin-bottom: 10px;
}

.preview-card p {
  color: #ccc;
  font-size: 0.95em;
}

/* --- SABİT WHATSAPP BUTONU --- */
.floating-whatsapp {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background: #25D366;
  color: #fff;
  font-size: 28px;
  width: 55px;
  height: 55px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  text-decoration: none;
  box-shadow: 0 4px 10px rgba(0,0,0,0.3);
  z-index: 1000;
  transition: 0.3s;
}

.floating-whatsapp:hover {
  background: #1ebe57;
  transform: scale(1.1);
}
/* --- HAKKIMIZDA SAYFASI --- */
.about-section {
  background: linear-gradient(180deg, #0b0b15, #111a2b);
  padding: clamp(54px, 8vw, 80px) clamp(18px, 8vw, 10%);
  display: flex;
  justify-content: center;
  align-items: center;
}

.about-content {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 40px;
  max-width: 1100px;
}

.about-content img {
  width: 100%;
  max-width: 450px;
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.3);
}

.about-text {
  flex: 1;
  color: #ddd;
  min-width: min(320px, 100%);
}

.about-text h2 {
  color: #f1c40f;
  margin-bottom: 15px;
  font-size: 1.8em;
}

.about-text p {
  margin-bottom: 15px;
  line-height: 1.7;
  font-size: 1em;
}

/* --- MİSYON & VİZYON --- */
.mission-vision {
  background: rgba(15,20,35,0.95);
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(280px, 100%), 1fr));
  gap: 30px;
  padding: clamp(42px, 7vw, 60px) clamp(18px, 8vw, 10%);
  text-align: center;
}

.mv-box {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  padding: 30px;
  border-radius: 8px;
  backdrop-filter: blur(10px);
  transition: 0.3s;
}

.mv-box:hover {
  background: rgba(255,255,255,0.08);
  transform: translateY(-5px);
}

.mv-box h3 {
  color: #f1c40f;
  margin-bottom: 10px;
  font-size: 1.4em;
}

.mv-box p {
  color: #ccc;
  line-height: 1.6;
}
/* --- İLETİŞİM SAYFASI --- */
.contact-section {
  background: linear-gradient(180deg, #0b0b15, #111a2b);
  padding: clamp(54px, 8vw, 80px) clamp(18px, 8vw, 10%);
  color: #eee;
}

.contact-container {
  display: flex;
  flex-wrap: wrap;
  gap: 50px;
  max-width: 1100px;
  margin: 0 auto;
  align-items: flex-start;
}

.contact-info {
  flex: 1;
  min-width: min(280px, 100%);
}

.contact-info h2 {
  color: #f1c40f;
  margin-bottom: 15px;
}

.contact-info p {
  margin-bottom: 20px;
  line-height: 1.6;
}

.contact-info ul {
  list-style: none;
  padding: 0;
}

.contact-info li {
  margin-bottom: 10px;
}

.contact-info a {
  color: #f1c40f;
  text-decoration: none;
}

.contact-info a:hover {
  text-decoration: underline;
}

.contact-form {
  flex: 1;
  min-width: min(280px, 100%);
  background: rgba(255,255,255,0.05);
  padding: 30px;
  border-radius: 8px;
  border: 1px solid rgba(255,255,255,0.1);
  backdrop-filter: blur(10px);
}

.form-group {
  margin-bottom: 20px;
}

.form-extra {
  height: 1px;
  left: -9999px;
  overflow: hidden;
  position: absolute;
  width: 1px;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 12px;
  border-radius: 8px;
  border: none;
  outline: none;
  font-family: 'Nunito', sans-serif;
  background: rgba(255,255,255,0.1);
  color: #fff;
  resize: none;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: #aaa;
}

.contact-form .btn {
  width: 100%;
  text-align: center;
}

/* Mobil uyum */
@media (max-width: 768px) {
  .contact-container {
    flex-direction: column;
  }
}
/* --- HARİTA --- */
.map-section {
  background: #0b0b15;
  padding: 0;
}

.map-responsive {
  position: relative;
  width: 100%;
  min-height: 320px;
  aspect-ratio: 16 / 9;
}

.map-section iframe {
  width: 100%;
  height: 100%;
  border: none;
  display: block;
}
/* WhatsApp Popup */
.whatsapp-popup {
  position: fixed;
  bottom: 25px;
  right: 25px;
  z-index: 9999;
}

.whatsapp-popup img {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  box-shadow: 0 3px 8px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease;
}

.whatsapp-popup img:hover {
  transform: scale(1.1);
}

/* --- SLIDER --- */
.slider {
  position: relative;
  width: 100%;
  height: 220px;
  border-radius: 8px;
  overflow: hidden;
  background: #111;
  margin-bottom: 15px;
}

.slider img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
  transition: opacity 1s ease-in-out;
}

.slider img.active {
  opacity: 1;
}

/* --- SEO İÇERİK BLOKLARI --- */
.content-section,
.faq-section {
  background: linear-gradient(180deg, #0b0b15, #111a2b);
  padding: clamp(54px, 8vw, 86px) clamp(18px, 8vw, 10%);
}

.alt-section {
  background: rgba(15, 20, 35, 0.95);
}

.section-inner {
  width: min(1120px, 100%);
  margin: 0 auto;
}

.two-column,
.detail-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(280px, 0.8fr);
  gap: clamp(28px, 5vw, 56px);
  align-items: start;
}

.section-kicker,
.breadcrumb {
  color: var(--brand);
  display: inline-block;
  font-size: 0.88rem;
  font-weight: 700;
  margin-bottom: 10px;
  text-transform: uppercase;
}

.breadcrumb {
  text-transform: none;
}

.breadcrumb a {
  color: var(--brand);
  text-decoration: none;
}

.breadcrumb a:hover {
  text-decoration: underline;
}

.content-copy h2,
.section-inner h2 {
  color: var(--brand);
  font-size: clamp(1.65rem, 4vw, 2.35rem);
  line-height: 1.18;
  margin-bottom: 18px;
}

.content-copy p,
.section-lead,
.detail-layout p,
.text-card p,
.faq-list p {
  color: var(--muted);
}

.content-copy p,
.section-lead {
  font-size: 1.02rem;
  margin-bottom: 16px;
}

.highlight-panel,
.detail-panel,
.text-card {
  background: rgba(255,255,255,0.055);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: clamp(20px, 4vw, 30px);
}

.highlight-panel h3,
.detail-panel h3,
.text-card h3 {
  color: var(--brand);
  margin-bottom: 12px;
}

.check-list,
.detail-list {
  list-style: none;
}

.check-list li,
.detail-list li {
  color: var(--muted);
  margin-bottom: 12px;
  padding-left: 24px;
  position: relative;
}

.check-list li::before,
.detail-list li::before {
  color: var(--brand);
  content: "✓";
  font-weight: 800;
  left: 0;
  position: absolute;
}

.trust-strip {
  background: #111a2b;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
}

.trust-strip div {
  background: rgba(255,255,255,0.04);
  padding: 26px 18px;
  text-align: center;
}

.trust-strip strong {
  color: var(--brand);
  display: block;
  font-size: clamp(1.5rem, 4vw, 2rem);
}

.trust-strip span {
  color: var(--muted);
  display: block;
  font-size: 0.95rem;
}

.seo-card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(240px, 100%), 1fr));
  gap: 22px;
  margin-top: 30px;
}

.text-card {
  color: inherit;
  display: block;
  text-decoration: none;
  transition: transform 0.25s ease, background 0.25s ease;
}

.text-card:hover {
  background: rgba(255,255,255,0.085);
  transform: translateY(-4px);
}

.area-links {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 26px;
}

.area-links a {
  background: rgba(255,255,255,0.07);
  border: 1px solid var(--border);
  border-radius: 8px;
  color: #fff;
  font-weight: 700;
  padding: 12px 16px;
  text-decoration: none;
}

.area-links a:hover {
  border-color: rgba(241,196,15,0.7);
  color: var(--brand);
}

.faq-section {
  background: #0b0b15;
}

.faq-list {
  display: grid;
  gap: 14px;
  margin-top: 28px;
}

.faq-list details {
  background: rgba(255,255,255,0.055);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 18px 20px;
}

.faq-list summary {
  color: #fff;
  cursor: pointer;
  font-weight: 800;
}

.faq-list p {
  margin-top: 12px;
}

.detail-hero-image {
  aspect-ratio: 16 / 10;
  border-radius: 8px;
  display: block;
  height: auto;
  object-fit: cover;
  width: 100%;
}

.detail-panel {
  position: sticky;
  top: calc(var(--header-height) + 22px);
}

.process-grid {
  counter-reset: step;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(220px, 100%), 1fr));
  gap: 20px;
  margin-top: 28px;
}

.process-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 22px;
}

.process-card::before {
  color: var(--brand);
  content: counter(step, decimal-leading-zero);
  counter-increment: step;
  display: block;
  font-size: 1.6rem;
  font-weight: 800;
  margin-bottom: 10px;
}

.process-card h3 {
  color: #fff;
  margin-bottom: 8px;
}

.process-card p {
  color: var(--muted);
}

@media (max-width: 900px) {
  .two-column,
  .detail-layout {
    grid-template-columns: 1fr;
  }

  .detail-panel {
    position: static;
  }

  .trust-strip {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 560px) {
  .button-group,
  .btn {
    width: 100%;
  }

  .btn {
    text-align: center;
    padding-inline: 18px;
  }

  .hero {
    min-height: 560px;
  }

  .preview-card,
  .service-card,
  .contact-form,
  .mv-box,
  .highlight-panel,
  .detail-panel,
  .text-card {
    padding: 18px;
  }

  .trust-strip {
    grid-template-columns: 1fr;
  }

  .floating-whatsapp {
    width: 52px;
    height: 52px;
    right: 16px;
    bottom: 16px;
  }
}
