/* ===================================== */
/* 🚀 GENEL RESET + TEMEL TARZ           */
/* ===================================== */

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

body {
  font-family: Arial, Helvetica, sans-serif;
  background: #f5f7fa;
  color: #222;
  overflow-x: hidden;
}

img {
  max-width: 100%;
  display: block;
}

a {
  text-decoration: none;
}

/* ===================================== */
/* 🚀 HEADER                             */
/* ===================================== */

.site-header {
  width: 100%;
  background: #0a2d5d;
  color: #fff;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 18px;
  position: sticky;
  top: 0;
  z-index: 99999;
}

.logo {
  display: flex;
  flex-direction: column;
  line-height: 1;
}

.logo-main {
  font-size: 20px;
  font-weight: bold;
}

.logo-sub {
  font-size: 13px;
  opacity: 0.8;
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 4px;
  cursor: pointer;
}

.hamburger div {
  width: 24px;
  height: 3px;
  background: #fff;
  border-radius: 2px;
}

.main-nav {
  display: flex;
  gap: 20px;
}

.main-nav a {
  color: #fff;
  font-size: 14px;
}

.main-nav a.active {
  font-weight: 600;
  text-decoration: underline;
}

/* Mobil menü */
@media (max-width: 900px) {
  .hamburger {
    display: flex;
  }

  .main-nav {
    position: absolute;
    left: 0;
    top: 58px;
    width: 100%;
    background: #0a2d5d;
    padding: 12px 0;
    display: none;
    flex-direction: column;
    text-align: center;
  }

  .main-nav.open {
    display: flex;
  }
}

/* ===================================== */
/* 🚀 SLIDER                             */
/* ===================================== */

.slider {
  width: 100%;
  height: 330px;
  position: relative;
  overflow: hidden;
}

.slides {
  width: 100%;
  height: 100%;
  position: relative;
}

.slide {
  width: 100%;
  height: 100%;
  position: absolute;
  opacity: 0;
  transition: opacity 0.7s ease;
}

.slide.active {
  opacity: 1;
}

.slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.slide-text {
  position: absolute;
  bottom: 26px;
  left: 50%;
  transform: translateX(-50%);
  background: rgba(0, 0, 0, 0.55);
  padding: 14px 20px;
  border-radius: 12px;
  color: #fff;
  text-align: center;
  max-width: 90%;
}

.slide-btn {
  display: inline-block;
  margin-top: 7px;
  padding: 8px 16px;
  background: #25d366;
  color: #fff;
  border-radius: 8px;
  font-size: 14px;
}

/* ===================================== */
/* 🎨 GENEL BAŞLIK TARZI                 */
/* ===================================== */

.section-title {
  font-size: 26px;
  text-align: center;
  color: #0a2d5d;
  font-weight: bold;
}

.section-sub {
  text-align: center;
  margin-top: 8px;
  font-size: 15px;
  color: #555;
}

/* ===================================== */
/* 🎨 HİZMETLER (Genel + Hizmetler sayfa)*/
/* ===================================== */

.services-section {
  padding: 50px 20px;
}

.services-grid {
  max-width: 1100px;
  margin: 35px auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 25px;
}

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

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

.service-box {
  background: #fff;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12);
  transition: 0.25s;
  position: relative;
}

.service-box:hover {
  transform: translateY(-6px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.18);
}

.service-box img {
  width: 100%;
  height: 170px;
  object-fit: cover;
}

.service-box h3 {
  text-align: center;
  font-size: 18px;
  margin-top: 12px;
  color: #0a2d5d;
}

.service-box p {
  text-align: center;
  padding: 8px 12px;
  color: #555;
  font-size: 14px;
}

.srv-btn {
  display: block;
  width: max-content;
  margin: 12px auto 16px;
  padding: 10px 20px;
  background: #0a2d5d;
  color: #fff;
  font-size: 14px;
  border-radius: 10px;
  transition: 0.2s;
}

.srv-btn:hover {
  background: #11488a;
}

/* ===================================== */
/* 📸 INSTAGRAM                          */
/* ===================================== */

.insta-section {
  padding: 40px 20px;
  background: #eef3ff;
}

.insta-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  max-width: 1000px;
  margin: auto;
}

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

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

.instagram-media {
  width: 100% !important;
  min-width: 100% !important;
}

.insta-btn {
  margin: 20px auto 0;
  display: block;
  width: max-content;
  padding: 8px 18px;
  background: #e1306c;
  color: #fff;
  border-radius: 12px;
}

/* ===================================== */
/* ⭐ GOOGLE YORUMLARI                    */
/* ===================================== */

.review-section {
  padding: 40px 20px;
}

.review-box {
  max-width: 900px;
  margin: auto;
  background: #fff;
  padding: 25px;
  border-radius: 12px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12);
}

.review-btn {
  display: block;
  width: max-content;
  margin: 16px auto 0;
  padding: 10px 20px;
  background: #0a2d5d;
  color: #fff;
  border-radius: 10px;
}

/* ===================================== */
/* 🧱 FOOTER                              */
/* ===================================== */

.main-footer {
  background: #0a2d5d;
  color: #fff;
  text-align: center;
  padding: 25px 10px 30px;
}

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

.footer-links a {
  color: #eaeaea;
  font-size: 13px;
}

/* ===================================== */
/* 💬 WHATSAPP BALONU & BUTONU           */
/* ===================================== */

.ws-bubble {
  position: fixed;
  bottom: 110px;
  right: 20px;
  background: #fff;
  color: #333;
  padding: 14px 20px;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.25);
  font-size: 14px;
  z-index: 99999;
  cursor: pointer;
}

.ws-arrow {
  position: absolute;
  width: 0;
  height: 0;
  border-left: 12px solid transparent;
  border-right: 12px solid transparent;
  border-top: 12px solid #fff;
  bottom: -12px;
  right: 25px;
}

.whatsapp-fixed {
  position: fixed;
  bottom: 22px;
  right: 22px;
  width: 70px;
  height: 70px;
  background: #25d366;
  border-radius: 50%;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.35);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  animation: pulse 2s infinite;
  cursor: pointer;
  z-index: 99999;
}

.whatsapp-icon {
  width: 40px;
  height: 40px;
}

.ws-label {
  font-size: 10px;
  color: #fff;
  margin-top: 3px;
  font-weight: bold;
}

/* Puls animasyonu */
@keyframes pulse {
  0% {
    transform: scale(1);
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.6);
  }

  70% {
    transform: scale(1.05);
    box-shadow: 0 0 0 15px rgba(37, 211, 102, 0);
  }

  100% {
    transform: scale(1);
  }
}

/* ===================================== */
/* ⬆ YUKARI ÇIK                          */
/* ===================================== */

.scroll-top {
  position: fixed;
  bottom: 110px;
  left: 20px;
  background: #0a2d5d;
  color: #fff;
  width: 48px;
  height: 48px;
  font-size: 22px;
  border-radius: 50%;
  display: none;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  transition: 0.25s;
  z-index: 99999;
}

.scroll-top:hover {
  transform: scale(1.08);
}

/* ===================================== */
/* 🌙 DARK MODE                          */
/* ===================================== */

/* Gece modu açma butonu */
.dark-mode-btn {
  position: fixed;
  bottom: 180px;
  left: 20px;
  background: #000;
  color: #ffeb3b;
  width: 48px;
  height: 48px;
  font-size: 22px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 99999;
}

/* Karanlık tema temel renkler */
body.dark-mode {
  background: #0d1117;
  color: #e6edf3;
}

/* Başlıklar */
body.dark-mode h1,
body.dark-mode h2,
body.dark-mode h3,
body.dark-mode h4,
body.dark-mode h5,
body.dark-mode h6 {
  color: #ffffff;
}

/* Paragraflar ve metin */
body.dark-mode p,
body.dark-mode li,
body.dark-mode span {
  color: #d0d7de;
}

/* Kartlar, kutular */
body.dark-mode .service-box,
body.dark-mode .review-box,
body.dark-mode .fh-card,
body.dark-mode .fh-result,
body.dark-mode .hk-box {
  background: #161b22;
  color: #e6edf3;
  box-shadow: none;
}

/* Özellik kutuları */
.hk-feature {
  background: #f5f7fa;
  padding: 8px 10px;
  border-radius: 10px;
  font-size: 14px;
}

body.dark-mode .hk-feature {
  background: #1d222b;
  color: #e6edf3;
}

/* Linkler */
body.dark-mode a {
  color: #58a6ff !important;
}

/* Footer */
body.dark-mode .main-footer {
  background: #11161c;
  color: #ccd6dd;
}

/* WhatsApp balonu ve oku */
body.dark-mode .ws-bubble {
  background: #222;
  color: #fff;
}

body.dark-mode .ws-arrow {
  border-top-color: #222;
}

/* Scroll-top ve WhatsApp gölge */
body.dark-mode .scroll-top {
  background: #4da3ff;
}

body.dark-mode .whatsapp-fixed {
  box-shadow: 0 0 20px rgba(255, 255, 255, 0.1);
}

/* Hakkımızda üst bandı */
.hk-hero {
  background: linear-gradient(120deg, #0a2d5d, #1455a3);
  color: #fff;
  text-align: center;
  padding: 50px 20px;
}

.hk-hero h1 {
  font-size: 30px;
}

.hk-hero p {
  font-size: 16px;
  opacity: 0.85;
}

body.dark-mode .hk-hero {
  background: linear-gradient(120deg, #000, #222);
}

/* Hakkımızda içerik alanı */
.hk-main {
  max-width: 900px;
  margin: 25px auto;
  padding: 0 15px;
}

.hk-box {
  background: #fff;
  padding: 18px 16px;
  border-radius: 14px;
  margin-bottom: 18px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12);
}

.hk-features {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
}

/* ============================== */
/* 💰 FİYAT HESAPLA (fh-*)         */
/* ============================== */

.fh-hero {
  background: linear-gradient(90deg, #0a2d5d, #1455a3);
  color: #fff;
  padding: 40px 18px 45px;
  text-align: center;
}

.fh-hero h1 {
  font-size: 26px;
  margin-bottom: 6px;
}

.fh-hero p {
  font-size: 15px;
}

.fh-container {
  max-width: 900px;
  margin: 25px auto 40px;
  padding: 0 15px;
}

.fh-card {
  background: #fff;
  border-radius: 14px;
  padding: 18px 16px;
  margin-bottom: 18px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
}

.fh-title {
  font-size: 20px;
  margin-bottom: 10px;
  color: #0a2d5d;
}

.fh-card label {
  font-size: 14px;
  margin-bottom: 4px;
  display: block;
}

.fh-input,
.fh-card select {
  width: 100%;
  padding: 10px;
  border-radius: 8px;
  border: 1px solid #ccc;
  font-size: 14px;
  margin-top: 3px;
  margin-bottom: 12px;
}

.fh-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
}

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

.fh-services {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.fh-service {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: #eef3ff;
  border: 1px solid #d7e1ff;
  padding: 8px 10px;
  border-radius: 10px;
  font-size: 14px;
  gap: 10px;
}

.fh-service input[type="checkbox"] {
  transform: scale(1.2);
  margin-right: 6px;
}

.fh-service span {
  font-size: 13px;
  color: #0a2d5d;
}

.fh-btn {
  width: 100%;
  padding: 12px;
  border-radius: 10px;
  background: #0a2d5d;
  color: #fff;
  border: none;
  font-size: 16px;
  cursor: pointer;
  font-weight: 600;
  margin-top: 5px;
}

.fh-btn:hover {
  background: #0d3f82;
}

.fh-result {
  display: none;
  background: #fff;
  margin-top: 18px;
  padding: 16px 14px;
  border-radius: 12px;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.1);
  font-size: 14px;
}

.fh-result.show {
  display: block;
}

.fh-total {
  text-align: center;
  margin-top: 10px;
  font-size: 20px;
  color: #0a2d5d;
  font-weight: bold;
}

.fh-wp-btn {
  width: 100%;
  margin-top: 14px;
  padding: 12px;
  border-radius: 10px;
  background: #25d366;
  color: #fff;
  border: none;
  font-size: 15px;
  cursor: pointer;
  font-weight: 600;
}

/* Fiyat sayfası dark mode uyumu */
body.dark-mode .fh-card,
body.dark-mode .fh-result {
  background: #1f1f1f;
  color: #eee;
}

body.dark-mode .fh-title {
  color: #4da3ff;
}

body.dark-mode .fh-input,
body.dark-mode .fh-card select {
  background: #333;
  border-color: #555;
  color: #fff;
}

body.dark-mode .fh-service {
  background: #2a2a2a;
  border-color: #444;
}

body.dark-mode .fh-total {
  color: #4da3ff;
}

/* ===================================== */
/* ⭐ İLETİŞİM SAYFASI (contact-*)       */
/* ===================================== */

.contact-container {
  max-width: 900px;
  margin: 40px auto;
  padding: 0 15px;
  display: flex;
  flex-direction: column;
  gap: 25px;
}

.contact-card {
  background: #fff;
  padding: 20px 18px;
  border-radius: 14px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12);
  text-align: center;
}

.contact-card h2 {
  font-size: 20px;
  color: #0a2d5d;
  margin-bottom: 8px;
}

.contact-card p {
  font-size: 15px;
  color: #444;
  margin-bottom: 12px;
}

.contact-btn-blue,
.contact-btn-green {
  display: block;
  width: 100%;
  color: #fff;
  padding: 12px 0;
  border-radius: 10px;
  font-size: 15px;
  font-weight: bold;
  margin-top: 8px;
}

.contact-btn-blue {
  background: #0a2d5d;
}

.contact-btn-green {
  background: #25d366;
}

.contact-card a:hover {
  opacity: 0.9;
}

.contact-map {
  width: 100%;
  height: 250px;
  border-radius: 12px;
  overflow: hidden;
  margin-bottom: 12px;
}

/* İletişim dark mode uyumu */
body.dark-mode .contact-card {
  background: #1f1f1f;
  color: #eee;
}

body.dark-mode .contact-card h2 {
  color: #4da3ff;
}

body.dark-mode .contact-btn-blue {
  background: #4da3ff;
}

body.dark-mode .contact-btn-green {
  background: #32e979;
}

.scroll-top {
  position: fixed;
  bottom: 90px;
  right: 20px;
  width: 48px;
  height: 48px;
  background: var(--main-color);
  color: #f79503;
  border-radius: 50%;
  font-size: 22px;
  display: none;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 9999;
  box-shadow: 0 4px 10px rgba(33, 3, 138, 0.3);
}

#google-yorumlar {
  background: #f7f9fc;
  border-radius: 14px;
  padding: 25px;
}

.yorum-kutu {
  border: 1px solid #ddd;
  padding: 15px;
  border-radius: 10px;
  background: #fff;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
}

.yorum-ust {
  display: flex;
  justify-content: space-between;
  margin-bottom: 10px;
  font-size: 15px;
  font-weight: 600;
}

.yorum-icerik {
  font-size: 15px;
  line-height: 1.5;
  margin-bottom: 10px;
  color: #333;
}

.yorum-tarih {
  color: #666;
  font-size: 13px;
}