html {
  font-size: 14px;
  position: relative;
  min-height: 100%;
}

@media (min-width: 768px) {
  html {
    font-size: 16px;
  }
}

body {
  margin: 0;
  background-color: #0B0B0B;
  color: #f5f5f5;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

a {
  color: #C8A96A;
}

a:hover {
  color: #e0be7e;
  text-decoration: none;
}

.btn:focus,
.btn:active:focus,
.btn-link.nav-link:focus,
.form-control:focus,
.form-check-input:focus {
  box-shadow: 0 0 0 0.1rem #ffffff, 0 0 0 0.25rem #C8A96A;
}

.btn-gold {
  background-color: #C8A96A;
  color: #000;
  border: none;
  padding: 0.75rem 1.75rem;
  border-radius: 999px;
  font-weight: 600;
  letter-spacing: 0.03em;
  transition: transform 0.2s ease, box-shadow 0.2s ease, opacity 0.2s ease;
}

.btn-gold:hover {
  opacity: 0.95;
  transform: translateY(-1px) scale(1.02);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.55);
}

.hero-section {
  position: relative;
}

.hero-slide,
.carousel-item {
  height: 600px;
  background-size: cover;
  background-position: center;
  position: relative;
}

.carousel-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(120deg, rgba(0, 0, 0, 0.85), rgba(0, 0, 0, 0.5));
}

.hero-content {
  max-width: 600px;
  position: relative;
  z-index: 2;
  color: #ffffff;
}

.hero-title {
  font-size: clamp(2.4rem, 4vw, 3.2rem);
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-bottom: 1rem;
}

.hero-subtitle {
  font-size: 1.1rem;
  color: #d0d0d0;
  margin-bottom: 1.5rem;
}

.hero-fallback {
  min-height: 500px;
  padding: 80px 20px;
  text-align: center;
}

.hero-btn {
  margin-top: 0.5rem;
}

.whatsapp-btn {
  position: fixed;
  bottom: 20px;
  right: 20px;
  width: 56px;
  height: 56px;
  background-color: #25D366;
  color: #ffffff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  z-index: 9999;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.4);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.whatsapp-btn:hover {
  transform: scale(1.1);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.6);
}

.section {
  padding: 80px 0;
}

.section-title {
  font-size: 2rem;
  margin-bottom: 1rem;
  position: relative;
  display: inline-block;
}

.section-subtitle {
  color: #b0b0b0;
  max-width: 600px;
  margin: 0 auto 2rem auto;
}

/* FAQ intro text should be more readable than RENAX default tiny uppercase subtitle */
.faqs .section-subtitle {
  font-size: 0.95rem;
  line-height: 1.6;
  letter-spacing: 0;
  text-transform: none;
  color: #d0d0d0;
}

.section-title::after {
  content: "";
  display: block;
  width: 72px;
  height: 2px;
  background: linear-gradient(90deg, #C8A96A, rgba(200, 169, 106, 0.1));
  margin-top: 0.4rem;
}

@media (max-width: 767.98px) {
  .section {
    padding: 48px 0;
  }
}

.section-kicker {
  font-size: 0.85rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #C8A96A;
  margin-bottom: 0.5rem;
}

.info-image-wrapper {
  overflow: hidden;
  border-radius: 1rem;
}

.info-image {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.3s ease;
}

.info-image-wrapper:hover .info-image {
  transform: scale(1.03);
}

.feature-item {
  background-color: #151515;
  border-radius: 0.9rem;
  padding: 1.25rem 1.4rem;
  border: 1px solid rgba(255, 255, 255, 0.05);
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
  height: 100%;
}

.feature-item:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.5);
  border-color: rgba(200, 169, 106, 0.5);
}

.feature-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(200, 169, 106, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 0.75rem;
  color: #C8A96A;
}

.feature-title {
  font-size: 1rem;
  margin-bottom: 0.25rem;
}

.feature-text {
  font-size: 0.95rem;
  color: #b8b8b8;
}

.preview-card {
  background-color: #141414;
  border-radius: 1rem;
  padding: 2rem 2.25rem;
  border: 1px solid rgba(255, 255, 255, 0.06);
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.55);
  height: 100%;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.preview-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.7);
  border-color: rgba(200, 169, 106, 0.6);
}

.preview-header {
  margin-bottom: 1rem;
}

.preview-faq-list {
  gap: 0.75rem;
  display: flex;
  flex-direction: column;
}

.preview-faq-item {
  padding-left: 1rem;
  border-left: 2px solid rgba(200, 169, 106, 0.4);
}

.preview-faq-q {
  display: block;
  font-weight: 600;
  margin-bottom: 0.15rem;
}

.preview-faq-a {
  display: block;
  font-size: 0.95rem;
  color: #c2c2c2;
}

.section-contact-cta {
  padding-bottom: 96px;
}

.contact-cta {
  border-radius: 1.25rem;
  padding: 1.75rem 2rem;
  border: 1px solid rgba(200, 169, 106, 0.6);
  background: radial-gradient(circle at top left, rgba(200, 169, 106, 0.16), transparent 55%), #111111;
  box-shadow: 0 22px 55px rgba(0, 0, 0, 0.65);
}

.contact-cta p {
  color: #d5d5d5;
}

/* Hakkımda sayfası: footer öncesi CTA bölümü */
.about-cta-section {
  position: relative;
  background-size: cover;
  background-position: center;
  background-color: #1a1a1a;
}
.about-cta-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.65);
}
.about-cta-section .position-relative {
  z-index: 1;
}
.about-cta-category {
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: #c8a96a;
  margin-bottom: 0.5rem;
}
.about-cta-title {
  font-size: clamp(1.5rem, 3.5vw, 2.25rem);
  font-weight: 700;
  color: #fff;
  margin-bottom: 1rem;
}
.about-cta-subtitle {
  font-size: 1.05rem;
  color: rgba(255, 255, 255, 0.9);
  max-width: 36rem;
  margin-left: auto;
  margin-right: auto;
}
.btn-about-cta-whatsapp {
  background: #c8a96a;
  color: #fff;
  border: none;
  padding: 0.6rem 1.5rem;
  border-radius: 0.35rem;
  font-weight: 600;
}
.btn-about-cta-whatsapp:hover {
  background: #b8985a;
  color: #fff;
}
.btn-about-cta-contact {
  background: transparent;
  color: #fff;
  border: 2px solid #fff;
  padding: 0.6rem 1.5rem;
  border-radius: 0.35rem;
  font-weight: 600;
}
.btn-about-cta-contact:hover {
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
  border-color: #fff;
}

.page-hero {
  position: relative;
  height: 320px;
  background-size: cover;
  background-position: center;
  margin-bottom: 0;
}

@media (max-width: 767.98px) {
  .page-hero {
    height: 240px;
  }
}

.page-hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(0, 0, 0, 0.85), rgba(0, 0, 0, 0.55));
}

.page-hero-content {
  position: relative;
  z-index: 2;
}

.page-hero-title {
  font-size: clamp(2rem, 3vw, 2.6rem);
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.breadcrumb-light .breadcrumb-item + .breadcrumb-item::before {
  color: rgba(255, 255, 255, 0.6);
}

.breadcrumb-light .breadcrumb-item,
.breadcrumb-light .breadcrumb-item a {
  color: rgba(255, 255, 255, 0.75);
}

.surface-card {
  background-color: #141414;
  border-radius: 1rem;
  border: 1px solid rgba(200, 169, 106, 0.25);
}

.contact-card {
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.contact-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.6);
  border-color: rgba(200, 169, 106, 0.6);
}

.recaptcha-placeholder {
  min-height: 80px;
  border-style: dashed;
  border-color: rgba(255, 255, 255, 0.25);
  border-radius: 0.75rem;
}

/* Contact form visual tweaks to better match RENAX template */
.contact .form-box {
  background-color: #1b1b1b;
  border-radius: 20px;
  padding: 30px 30px 35px;
}

.contact .form-box h5 {
  text-align: center;
  margin-bottom: 20px;
}

.contact .form-box .form-control {
  background-color: #111111;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 30px;
  color: #f5f5f5;
}

.contact .form-box textarea.form-control {
  border-radius: 20px;
}

.contact .form-box .form-control::placeholder {
  color: #777777;
}

.contact .form-box .form-control:focus {
  border-color: #f5b754;
  box-shadow: none;
}

/* İletişim formu postback sonuç kutusu – temaya uyumlu, responsive */
.contact-form-result {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1rem 1.25rem;
  margin-bottom: 1.5rem;
  border-radius: 20px;
  background: #1b1b1b;
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.contact-form-result__icon {
  font-size: 1.5rem;
  flex-shrink: 0;
  margin-top: 0.1rem;
}

.contact-form-result__text {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  min-width: 0;
}

.contact-form-result__text strong {
  display: block;
  font-size: 1rem;
}

.contact-form-result__detail {
  font-size: 0.9rem;
  color: #999;
  line-height: 1.4;
}

.contact-form-result--success {
  border-color: #f5b754;
  background: rgba(245, 183, 84, 0.06);
}

.contact-form-result--success .contact-form-result__icon {
  color: #f5b754;
}

.contact-form-result--success .contact-form-result__text strong {
  color: #f5b754;
}

.contact-form-result--error {
  border-color: rgba(220, 53, 69, 0.5);
  background: rgba(220, 53, 69, 0.06);
}

.contact-form-result--error .contact-form-result__icon {
  color: #dc3545;
}

.contact-form-result--error .contact-form-result__text strong {
  color: #e8737f;
}

@media (max-width: 576px) {
  .contact-form-result {
    padding: 0.875rem 1rem;
    gap: 0.75rem;
  }

  .contact-form-result__icon {
    font-size: 1.25rem;
  }

  .contact-form-result__text strong,
  .contact-form-result__detail {
    font-size: 0.875rem;
  }
}