/* ================= GENEL ================= */

body {
    font-family: 'Poppins', sans-serif;
    background-color: #f8f9fa;
    color: #333;
    padding-top: 5px;
}

/* Tema renkleri (abartısız kırmızı) */
:root{
    --brand-red: #c40000;
    --brand-red-hover: #a00000;
    --soft-bg: #f8f9fa;
}

/* ================= NAVBAR ================= */

.navbar {
    background-color: #ffffff !important;
    padding: 1px 0;
    transition: 0.3s;
    border-bottom: 3px solid rgba(196,0,0,0.20); /* hafif kırmızı vurgu */
}

.navbar-brand img {
    height: 80px;
}

.nav-link {
    color: #222 !important;
    font-weight: 600;
    margin-left: 20px;
    transition: 0.3s;
}

.nav-link:hover {
    color: var(--brand-red) !important;
}

.nav-link.active {
    color: var(--brand-red) !important;
    border-bottom: 2px solid var(--brand-red);
}

/* Mobil hamburger ikonunu garanti göster */
.navbar-dark .navbar-toggler {
  border-color: rgba(255,255,255,.4);
}
.navbar-dark .navbar-toggler-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255,255,255,0.9%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

/* ================= SLIDER / MODAL (eski slider modalin kalsın) ================= */

/* Modal içindeki büyük görseller ekrana sığsın */
.slider-img{
    max-width: 100%;
    max-height: 105vh;
    width: auto;
    height: auto;
    object-fit: contain;
    display: block;
}

/* modal body taşmayı engellesin */
#sliderModal .modal-body{
    overflow: hidden;
}
#sliderModal .modal-content{
    height: 100vh;
}

.carousel-caption {
    top: 60%;
    bottom: auto;
}

.carousel-caption h1 {
    font-size: 32px;
    font-weight: 900;
    color: #ffffff;
}

.carousel-caption p {
    font-size: 22px;
    color: rgba(255,255,255,0.92);
    font-weight: 600;
}

/* ================= BUTON ================= */

.btn-custom {
    background-color: var(--brand-red);
    color: #fff;
    padding: 12px 28px;
    border-radius: 30px;
    font-weight: 600;
    border: none;
    transition: 0.3s;
}

.btn-custom:hover {
    background-color: var(--brand-red-hover);
    color: #fff;
}

/* Bootstrap btn-danger’i de aynı tona çek (site bütünlüğü için) */
.btn-danger{
    background: var(--brand-red);
    border: none;
}
.btn-danger:hover{
    background: var(--brand-red-hover);
}

/* ================= HİZMET KARTLARI ================= */

.card {
    border: none;
    transition: 0.3s;
}

.card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

/* HOVER OLUNCA TÜM YAZILAR SİYAH OLSUN */
.service-card:hover h1,
.service-card:hover h2,
.service-card:hover h3,
.service-card:hover h4,
.service-card:hover h5,
.service-card:hover h6,
.service-card:hover p,
.service-card:hover span {
    color: #000 !important;
}

/* ================= HAKKIMIZDA ================= */

.about-subtitle {
    color: var(--brand-red);
    font-weight: 600;
    letter-spacing: 1px;
    font-size: 14px;
    text-transform: uppercase;
}

.about-title {
    font-family: 'Playfair Display', serif;
    font-size: 32px;      /* sendeki küçültülmüş hali korunuyor */
    font-weight: 700;
    color: #222;
    line-height: 1.2;
    margin-bottom: 20px;
}

.about-text {
    font-size: 17px;
    line-height: 1.8;
    color: #444;
    margin-bottom: 20px;
}

.about-list {
    list-style: none;
    padding: 0;
}

.about-list li {
    font-size: 16px;
    margin-bottom: 10px;
    font-weight: 500;
}

/* ================= FOOTER ================= */

footer {
    background-color: #111;
    color: white;
    padding: 40px 0;
    margin-top: 50px;
}

footer a {
    color: rgba(255,255,255,0.90);
    text-decoration: none;
}

footer a:hover {
    color: #fff;
    text-decoration: underline;
}

/* ================= VURGU ================= */

.highlight {
    color: var(--brand-red);
}

/* ================= Navbar Telefon Butonu ================= */

.phone-btn {
    background-color: var(--brand-red);
    color: #fff !important;
    font-weight: 600;
    border-radius: 8px;
    padding: 8px 18px;
    border: none;
    transition: 0.3s;
}

.phone-btn:hover {
    background-color: var(--brand-red-hover);
    color: #fff !important;
}

/* ================= YORUM / GOOGLE YORUM ================= */

.yorum-section {
    background: var(--soft-bg);
    padding: 20px 0 10px 0;
}

.yorum-box {
    max-width: 800px;
    margin: auto;
}

.yorum-box p {
    font-size: 18px;
    color: #555;
}

.google-review-section {
    background: var(--soft-bg);
    padding: 1px 0;
}

.google-review-card {
    background: #fff;
    max-width: 600px;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.08);
    text-align: left;
}

.review-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
}

.review-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
}

.google-logo {
    width: 80px;
    margin-left: auto;
}

.stars {
    color: var(--brand-red); /* sarı yerine kırmızı */
    font-size: 18px;
    margin-bottom: 10px;
    letter-spacing: 4px;
}

.review-text {
    font-size: 15px;
    color: #555;
}

/* Carousel indicator tek tanım */
.carousel-indicators [data-bs-target] {
    background-color: #ccc;
    width: 8px;
    height: 8px;
    border-radius: 50%;
}
.carousel-indicators .active {
    background-color: var(--brand-red);
}

/* GOOGLE YORUM CAROUSEL BOŞLUK FIX */
#yorumlar .carousel-item {
    min-height: auto !important;
    height: auto !important;
    padding-bottom: 0 !important;
}

#yorumlar .carousel-inner {
    padding-bottom: 0 !important;
}

#yorumlar .carousel {
    margin-bottom: 0 !important;
}

/* ================= WhatsApp Floating (tekleştirilmiş) ================= */

.whatsapp-float {
    position: fixed;
    right: 20px;
    bottom: 20px;
    display: flex;
    align-items: center;
    text-decoration: none;
    z-index: 999999;
    transition: 0.3s;
}

/* Logo */
.whatsapp-float img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    box-shadow: 0 4px 12px rgba(0,0,0,0.3);
    transition: 0.3s;
}

.whatsapp-float img:hover {
    transform: scale(1.08);
}

/* Yazı - başlangıçta gizli */
.whatsapp-text {
    background: #25D366;
    color: white;
    padding: 2px 18px;
    border-radius: 30px;
    margin-right: -120px;
    opacity: 0;
    transition: all 0.3s ease;
    white-space: nowrap;
    font-weight: 500;
}

/* Hover olunca açılma efekti */
.whatsapp-float:hover .whatsapp-text {
    margin-right: 8px;
    opacity: 1;
}

/* ================= Mobil Sabit Arama Butonu (senin class varsa çalışır) ================= */
.mobile-call-btn:hover {
    background: #157347;
    color: white;
}

/* ================= ALT ALTA HİZMET BLOKLARI (service-row) ================= */

.service-row{
  background:#fff;
  padding:40px;
  border-radius:16px;

  box-shadow:0 10px 30px rgba(0,0,0,0.08);

  /* kırmızı vurgu */
  border-left:6px solid var(--brand-red);

  transition: .2s ease;
}

.service-row:hover{
  transform: translateY(-3px);
  box-shadow:0 14px 34px rgba(196,0,0,0.10);
}

.service-big-img{
  border-radius:14px;
  box-shadow:0 10px 22px rgba(0,0,0,0.08);
}

.service-big-title{
  font-weight:800;
  font-size:32px;
  color: var(--brand-red);
  letter-spacing:0.2px;
}

.service-big-text{
  margin-top:15px;
  font-size:16px;
  line-height:1.7;
  color:#333;
}

/* Mobil */
@media(max-width:768px){
  .service-row{
    padding:20px;
    border-left-width:5px;
  }
  .service-big-title{
    font-size:24px;
  }
}
/* NAVBAR TELEFON BUTONU - KIRMIZI */
.navbar .phone-btn,
.navbar .btn-warning.phone-btn,
.navbar a.phone-btn,
.navbar .btn-warning {
  background: #c40000 !important;
  border: none !important;
  color: #fff !important;
}

.navbar .phone-btn:hover,
.navbar .btn-warning:hover {
  background: #a00000 !important;
  color: #fff !important;
}
.about-check-box{
  border-left: 5px solid #c40000;
}

.about-list li{
  margin-bottom: 8px;
  font-weight: 600;
}

.about-text a{
  color:#c40000;
}
/* ===================== GÖRSEL STANDARTLAŞTIRMA ===================== */
/* Tema genel ayar */
:root{
  --img-radius: 14px;
}

/* 1) Ana sayfa 4 kutucuk (home-service-box içindeki resimler) */
.home-service-box img{
  width: 100%;
  height: 220px;          /* hepsi aynı yükseklik */
  object-fit: cover;      /* orantı bozulmaz, kırpar */
  display: block;
  border-radius: var(--img-radius);
}

/* 2) Hizmetler sayfasındaki kartlar (Bootstrap card içinde görsel varsa) */
.card img,
.service-card2 img{
  width: 100%;
  height: 170px;
  object-fit: cover;
  display: block;
  border-top-left-radius: var(--img-radius);
  border-top-right-radius: var(--img-radius);
}

/* 3) Hizmet detay / alt alta detay blokları (service-section içindeki büyük görseller) */
.service-section img,
.service-row img,
.service-detail-block img,
.detail-img{
  width: 100%;
  height: 420px;
  object-fit: cover;
  display: block;
  border-radius: var(--img-radius);
}

/* 4) Genel: Rounded kullandığında taşma olmasın */
.rounded,
.rounded-3,
.rounded-4{
  overflow: hidden;
}

/* 5) Mobil optimizasyon */
@media (max-width: 768px){
  .home-service-box img{ height: 170px; }
  .card img, .service-card2 img{ height: 150px; }
  .service-section img, .service-row img, .service-detail-block img, .detail-img{ height: 260px; }
}
/* Yanıp sönen kırmızı animasyon */
.blink-text{
  font-weight: 800;
  color: #c40000;
  animation: blinkRed 1s infinite;
}

@keyframes blinkRed {
  0%   { opacity: 1; }
  50%  { opacity: 0.2; }
  100% { opacity: 1; }
}