/*
Theme Name: Nakliyat Tema
Author: Grok
Description: Bootstrap altyapÄ±lÄ± profesyonel nakliyat temasÄ±
Version: 2.4
*/

@import url('https://cdn.jsdelivr.net/npm/bootstrap@5.3.0/dist/css/bootstrap.min.css');
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;600;700&display=swap');

* {
    caret-color: transparent !important;
  }

body {
    font-family: 'Poppins', sans-serif;
    color: var(--secondary-color);
    background: #F8F8F8;
    overflow:hidden;
}

a {
    text-decoration: none;
    transition: all 0.3s ease;
}

/* Genel Caret ve Focus Stilleri */
input, textarea, button, [contenteditable] {
    caret-color: transparent; /* Caret simgesini kaldÄ±r */
}

input:focus, textarea:focus, button:focus, [contenteditable]:focus {
    outline: none; /* VarsayÄ±lan focus outlineâ€™Ä±nÄ± kaldÄ±r */
}

/* Top Bar */
.top-bar {
    background: var(--secondary-color);
    padding: 10px 0;
    color: var(--accent-color);
}

.top-bar .social-icons a {
    color: var(--accent-color);
    margin-right: 15px;
    font-size: 16px;
}

.top-bar .social-icons a:hover {
    color: var(--primary-color);
}

.top-bar .whatsapp-btn {
    background: #25D366;
    color: var(--accent-color);
    padding: 8px 15px;
    border-radius: 25px;
    font-size: 14px;
}

.top-bar .whatsapp-btn:hover {
    background: #20BA56;
}

.top-bar .search-form input {
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-right: none;
    border-radius: 0;
    padding: 6px 15px;
    width:100%!important;
    background: rgba(255, 255, 255, 0.1);
    color: var(--accent-color);
    font-size: 14px;
    caret-color: transparent;
}

.top-bar .search-form input::placeholder {
    color: rgba(255, 255, 255, 0.7);
}

.top-bar .search-form button {
    background: rgba(var(--primary-color-rgb), 0.3);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-left: none;
    border-radius: 0;
    padding: 6px 15px;
    color: var(--accent-color);
}

.top-bar .search-form button:hover {
    background: var(--primary-color);
}

/* Header Middle */
.header-middle {
    padding: 20px 0;
    background: var(--accent-color);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.header-middle .logo img {
    max-height: 80px;
    transition: transform 0.3s ease;
}

.header-middle .logo img:hover {
    transform: scale(1.05);
}

.header-middle .contact-info2 {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 20px;
}

.header-middle .contact-info2 p {
    margin: 0;
    font-size: 16px;
    color: var(--secondary-color);
    font-weight: 600;
}

.header-middle .contact-info2 i {
    color: var(--primary-color);
    margin-right: 10px;
}

/* Navbar */
.navbar {
    background: var(--primary-color);
    padding: 12px 0;
}

.navbar-nav {
    display: flex;
    justify-content: space-between;
    width: 100%;
    max-width: 1140px;
    margin: 0 auto;
}

.navbar-nav .nav-link {
    color: var(--accent-color) !important;
    font-weight: 600;
    padding: 10px 15px;
    border-radius: 5px;
    transition: background 0.3s ease;
}

.navbar-nav .nav-link:hover {
    background: #30303026; /* Sabit hover rengi, isteÄŸe baÄŸlÄ± deÄŸiÅŸtirilebilir */
}

.navbar-nav .dropdown-menu {
    background: var(--secondary-color);
    border: none;
    border-radius: 5px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.navbar-nav .dropdown-item {
    color: var(--accent-color);
    padding: 10px 20px;
}

.navbar-nav .dropdown-item:hover {
    background: var(--primary-color);
}

/* Slider */
.slider-section {
    margin-bottom: 0;
    position: relative;
    z-index: 1;
    overflow: hidden;
}

.slider-section .carousel-inner {
    overflow: hidden;
    position: relative;
}

.slider-section .carousel-inner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.2));
    z-index: 2;
}

.slider-section img {
    width: 100%;
    height: 600px;
    object-fit: cover;
    filter: brightness(70%) contrast(105%);
    transition: transform 0.7s ease;
    clip-path:none;
}

.slider-section .carousel-item.active img {
    transform: scale(1.03);
}

.slider-caption {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: var(--accent-color);
    padding: 30px 40px;
    border-radius: 10px;
    max-width: 700px;
    text-align: center;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
    opacity: 0;
    transition: opacity 0.6s ease, transform 0.6s ease;
    z-index: 3;
}

.carousel-item.active .slider-caption {
    opacity: 1;
    transform: translate(-50%, -50%);
}

.slider-caption h2 {
    font-size: 38px;
    font-weight: 700;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.slider-caption p {
    font-size: 18px;
    margin-bottom: 25px;
    font-weight: 400;
    line-height: 1.5;
}

.slider-caption .btn {
    background: var(--primary-color);
    border: none;
    padding: 12px 35px;
    border-radius: 30px;
    font-size: 16px;
    font-weight: 600;
    text-transform: uppercase;
    color: var(--accent-color);
    transition: background 0.3s ease, box-shadow 0.3s ease;
}

.slider-caption .btn:hover {
    background: var(--secondary-color); /* Sabit hover rengi, isteÄŸe baÄŸlÄ± deÄŸiÅŸtirilebilir */
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.carousel-control-prev, .carousel-control-next {
    width: 8%;
    background: transparent;
    opacity: 0.6;
    transition: opacity 0.3s ease;
}

.carousel-control-next {
    background: transparent;
}

.carousel-control-prev:hover, .carousel-control-next:hover {
    opacity: 1;
}

.carousel-control-prev-icon, .carousel-control-next-icon {
    width: 30px;
    height: 30px;
    background-size: 100%, 100%;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.2);
}

/* Boxes */
.boxes-section {
    position: relative;
    top: -70px;
    z-index: 2;
    padding: 0 0 60px 0;
    background: transparent;
}

.boxes-section .container {
    max-width: 1140px;
}

.boxes-section .box {
    background: var(--primary-color);
    border: none;
    border-radius: 1rem 3rem;
    padding: 20px;
    margin-bottom: 20px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 130px;
    display: flex;
    align-items: center;
}

.boxes-section .box:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.15);
}

.boxes-section .box i {
    font-size: 25px;
    color: var(--accent-color);
    width: 60px;
    height: 60px;
    line-height: 60px;
    border-radius: 50%;
    background: rgb(0 0 0 / 7%);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
    text-align: center;
    margin-right: 15px;
    flex-shrink: 0;
}

.boxes-section .box h4 {
    font-size: 18px;
    color: var(--accent-color);
    font-weight: 600;
    text-transform: uppercase;
    margin: 0;
    display: flex;
    align-items: center;
    flex-grow: 1;
}

.boxes-section .box a {
    color: var(--accent-color);
    font-weight: 600;
}

.boxes-section .box a:hover {
    color: #F5F7FA; /* Sabit hover rengi, isteÄŸe baÄŸlÄ± deÄŸiÅŸtirilebilir */
}
@media (min-width: 900px) {
    .navbar-brand{
        display:none!important;
    }
}
/* Responsive */
@media (max-width: 768px) {
    .slider-section img {
        height: 400px;
    }
    .slider-caption {
        padding: 20px;
        max-width: 90%;
        transform: translate(-50%, -50%);
    }
    .slider-caption h2 {
        font-size: 28px;
    }
    .slider-caption p {
        font-size: 16px;
        margin-bottom: 15px;
    }
    .slider-caption .btn {
        padding: 10px 25px;
        font-size: 14px;
    }
    .header-middle .contact-info {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }
    .top-bar .whatsapp-btn {
        margin-top: 10px;
    }
    .navbar-nav {
        justify-content: flex-start;
        max-width: 100%;
    }
    .boxes-section {
        top: 1rem;
        padding: 0 0 40px 0;
    }
    .boxes-section .box {
        padding: 15px;
        height: 85px;
        border-radius: 5px;
        margin: 1px;
    }
    .boxes-section .box i {
        font-size: 32px;
        width: 50px;
        height: 50px;
        line-height: 50px;
        margin-right: 10px;
    }
    .boxes-section .box h4 {
        font-size: 16px;
    }
}
@media (max-width: 768px) {
    /* Top-barâ€™da WhatsApp butonunu gizle */
    .top-bar .whatsapp-btn {
      display: none !important;
    }
  
    /* Navbar menÃ¼yÃ¼ mobilde gizle (collapse yapacaÄŸÄ±z) */
    .navbar-nav {
      display: none !important;
    }
    /* Togglerâ€™Ä± mobilde gÃ¶ster */
    .navbar-toggler {
      display: block;
    }
  }
  @media (min-width: 769px) {
    /* Desktopâ€™ta togglerâ€™Ä± gizle */
    .navbar-toggler {
      display: none;
    }
  }
  
  /* Offcanvas (mobil yan menÃ¼) */
.offcanvas-start {
    background: var(--primary-color);
    width: 80%;           /* Ä°stersen %100 de yapabilirsin */
  }
  .offcanvas-body {
    padding-top: 1rem;
  }
  .offcanvas .nav-link {
    color: var(--accent-color);
    font-size: 1.2rem;
    padding: 0.75rem 1rem;
  }
  .offcanvas .nav-link:hover,
  .offcanvas .dropdown-item:hover {
    background: rgba(255,255,255,0.1);
  }
  
  /* KÃ¼Ã§Ã¼k ekranlarda top-bar dÃ¼zeni (opsiyonel, Ã¶nceki adÄ±mda eklediysen) */
  @media (max-width: 991.98px) {
    .top-bar .col-6 {
      flex: 0 0 50%;
      max-width: 50%;
    }
    .header-middle{
        display:none!important;
    }
    .top-bar .whatsapp-btn {
      display: none !important;
    }
    .top-bar .social-icons { order: 1; }
    .top-bar .search-form   { order: 2; margin-left: auto; }
  }
  /* Dropdown’lara .show eklendiğinde mutlaka göster */
.navbar-nav .dropdown-menu.show,
.offcanvas .dropdown-menu.show {
  display: block !important;
}

/* Offcanvas içinde dropdown’ları kapat, .show ile aç */
.offcanvas .dropdown-menu {
  display: none;
  position: static;    /* statik konumlandırma */
  float: none;
  background: transparent;
  box-shadow: none;
  margin-bottom: 1rem;
}

/* Alt menü öğelerini biraz içeriden başlat */
.offcanvas .dropdown-item {
  padding-left: 2rem;
}

/* Masaüstü hover yerine tıklama da JS ile açılacaksa hover’u devre dışı bırak */
@media (min-width: 992px) {
  .navbar-nav .dropdown:hover > .dropdown-menu {
    display: none;
  }
}
/* ───────────────────────────────────────────────────────────
   Modern Kurumsal Dropdown Menu Stilleri
─────────────────────────────────────────────────────────── */

/* Ortak Dropdown Konteyneri */
.navbar-nav .dropdown-menu,
.offcanvas .dropdown-menu {
  background: var(--primary-color);                        /* Beyaz zemin */
                     /* Yumuşak köşeler */
  box-shadow: 0 4px 20px rgba(0,0,0,0.1);   /* Hafif gölge */
  padding: 0.5rem 0;                       /* Dikey boşluk */
  min-width: 14rem;                        /* Yeterli genişlik */
  border: 0;
  transition: opacity 0.3s ease,
              transform 0.3s ease;         /* Akıcı açılma animasyonu */
}

/* Masaüstü dropdown kenarlığı */
.navbar-nav .dropdown-menu {
  border: 1px solid rgba(0,0,0,0.05);
}

/* Menü öğeleri */
.dropdown-item {
  color: var(--accent-color);
  padding: 0.6rem 1.2rem;
  font-size: 0.95rem;
  font-weight: 500;
  transition: background 0.3s ease,
              color 0.3s ease;
}

/* Hover / Focus efekti */
.dropdown-item:hover,
.dropdown-item:focus {
  background: var(--primary-color);
  color: var(--accent-color);
}

/* Ok işaretini kurumsal renge boyama */

/* Offcanvas içindeki alt menüler için içe kaydırma */
.offcanvas .dropdown-menu .dropdown-item {
  padding-left: 2rem;
}

/* Offcanvas alt menü başlıkları (toggle) */
.offcanvas .dropdown-toggle {
  font-weight: 600;
  color: var(--accent-color);
}

/* Offcanvas alt menüyü açarken animasyon */
.offcanvas .dropdown-menu.show {
  display: block !important;
  transform: translateY(0);
  opacity: 1;
}

/* Hover’da hafif arka plan tonu (opsiyonel soft efekt) */
.offcanvas .dropdown-item:hover {
  background: rgba(255,255,255,0.1);
}

/* Responsive: Masaüstünde hover ile de açılmasını istersen ekle */
@media (min-width: 992px) {
  .navbar-nav .dropdown:hover > .dropdown-menu {
    display: block;
  }
}
/* ─────────── Creative Corporate Info Section ─────────── */
.corporate-info {
    position: relative;
    background: var(--secondary-color);
    color: var(--accent-color);
    padding: 5rem 0;
    overflow: hidden;
  }
  
  /* Arkada hafif bir daire deseni */
  .corporate-info::before {
    content: "";
    position: absolute;
    top: -60px; left: -60px;
    width: 200px; height: 200px;
    background: var(--primary-color);
    border-radius: 50%;
    opacity: 0.1;
  }
  
  /* Başlık stilini vurgula */
  .corporate-info .section-title {
    position: relative;
    display: inline-block;
    padding-bottom: 0.5rem;
    margin-bottom: 2rem;
    font-size: 2.75rem;
    color: var(--accent-color);
  }
  .corporate-info .section-title::after {
    content: "";
    position: absolute;
    bottom: 0; left: 0;
    width: 60px; height: 4px;
    background: var(--primary-color);
    border-radius: 2px;
  }
  
  /* Metin sütunu */
  .corporate-info .col-lg-8 {
    font-size: 1.05rem;
    line-height: 1.7;
    padding-right: 2rem;
  }
  
  /* Fotoğraf sütunu */
  .corporate-info-img {
    max-width: 100%;
    display: block;
    margin: 0 auto;
    clip-path: polygon(20% 0%, 100% 0%, 80% 100%, 0% 100%);
    border: 4px solid var(--primary-color);
    box-shadow: 0 12px 30px rgba(0,0,0,0.15);
    transition: transform .4s ease, box-shadow .4s ease;
  }
  .corporate-info-img:hover {
    transform: scale(1.03) rotate(-1deg);
    box-shadow: 0 16px 40px rgba(0,0,0,0.2);
  }
  
  /* Responsive: mobilde metin üstte, görsel altta */
  @media (max-width: 991.98px) {
    .corporate-info .row {
      flex-direction: column;
    }
    .corporate-info-img {
      margin-top: 2rem;
    }
  }
/* Göz alıcı, shapely ve modern “Teklif Al” butonu */
.corporate-info-btn {
    position: relative;
    display: inline-block;
    padding: 0.75rem 2.5rem;
    border-radius: 50px;
    background: linear-gradient(135deg, var(--info-primary-color) 0%, var(--info-secondary-color) 100%);
    color: var(--info-accent-color);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
  }
  
  .corporate-info-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: rgba(255,255,255,0.25);
    transform: skewX(-25deg);
    transition: left 0.5s ease-out;
  }
  
  .corporate-info-btn:hover {
    transform: translateY(-4px);
    color:var(--info-accent-color);
    box-shadow: 0 12px 30px rgba(0,0,0,0.2);
  }
  
  .corporate-info-btn:hover::before {
    left: 200%;
  }
  .stats-section {
    background: var(--statistics-background);
    color: var(--secondary-color);
  }
/* Güncellenecek kısım: Stats ikonlarının arka planını geniş ve organik bir şekle dönüştür */
.stats-item .icon {
    position: relative;
    width: 5rem;   /* genişliği artırdık */
    height: 5rem;  /* yüksekliği artırdık */
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--secondary-color);
    color: var(--accent-color);
    border-radius: 30% 70% 40% 60% / 60% 30% 70% 40%; /* organik blob formu */
    margin: 0 auto 1rem;
    overflow: hidden;
    transition: transform .3s ease, box-shadow .3s ease;
  }
  .stats-item .counter::before {
    content: "+";
    display: inline-block;
    margin-right: 0.25rem;
    color: var(--primary-color);
    font-weight: 700;
    font-size: inherit;
  }
  
  .stats-item .icon::before {
    content: "";
    position: absolute;
    top: -1rem; left: -1rem;
    width: 7rem;  /* pseudo-arkaplan daha da geniş */
    height: 7rem;
    background: var(--accent-color);
    border-radius: 50% 50% 50% 50%; /* yumuşak dairesel efekt */
    opacity: 0.15;
    z-index: -1;
  }
  
  .stats-item .icon:hover {
    transform: scale(1.1);
  }
  
  .stats-item .counter {
    display: block;
    font-size: 2.25rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: .5rem;
  }
  .stats-item .label {
    font-size: .95rem;
    text-transform: uppercase;
    letter-spacing: .05em;
  }
  
  /* Responsive */
  @media (max-width: 767.98px) {
    .stats-item { flex: 0 0 50%; max-width: 50%; }
  }
  .faq-section {
    background: var(--accent-color);
    color: var(--secondary-color);
  }
  .faq-side-img img {
    width: 100%;
    height: auto;
    border-radius: 5rem 1rem;
    border: 5px solid var(--primary-color);
    box-shadow: 0 8px 30px rgba(0,0,0,0.1);
    transition: transform .4s ease, box-shadow .4s ease;
  }
  .faq-side-img img:hover {
    transform: scale(1.05);
    box-shadow: 0 12px 40px rgba(0,0,0,0.15);
  }
  .faq-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-color);
    text-transform: uppercase;
  }
  .faq-desc {
    max-width: 600px;
    margin: 0 auto 2rem;
    font-size: 1rem;
  }
  .faq-section .accordion-item {
    border: none;
    margin-bottom: 1rem;
    border-radius: .75rem;
    overflow: hidden;
    box-shadow: 0 6px 24px rgba(0,0,0,0.08);
  }
  .faq-section .accordion-button {
    background: var(--secondary-color);
    color: var(--accent-color);
    font-weight: 600;
    padding: 1rem 1.5rem;
    transition: background .3s ease;
  }
  .faq-section .accordion-button:not(.collapsed) {
    background: var(--primary-color);
    color: var(--accent-color);
  }
  .faq-section .accordion-body {
    background: var(--accent-color);
    color: var(--secondary-color);
    padding: 1rem 1.5rem;
    font-size: .95rem;
    line-height: 1.6;
  }
  /* Responsive: mobilde üst üste */
  @media (max-width: 991.98px) {
    .faq-section .row {
      flex-direction: column;
    }
    .faq-side-img {
      margin-bottom: 2rem;
      max-width: 60%;
      margin-left: auto;
      margin-right: auto;
    }
  }
  /* 4) style.css — Hizmetlerimiz bölümü için modern kartlar */
.services-section {
  background: var(--secondary-color);
  color: var(--accent-color);
}
.services-section .section-title {
  font-size: 2.5rem;
  color: var(--accent-color);
  text-transform: uppercase;
  margin-bottom: 2rem;
}
.service-item{
  display:inline-block;
  padding:2rem;
}
.service-item .card {
  transition: transform .3s ease, box-shadow .3s ease;
  border-radius: .75rem;
}
.service-item .card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 30px rgba(0,0,0,0.1);
}
.service-thumb {
  width: 100%;
  height: 180px;
  object-fit: cover;
  border-top-left-radius: .75rem;
  border-top-right-radius: .75rem;
}
.card-title {
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: .75rem;
}
.card-text {
  font-size: .9rem;
  line-height: 1.6;
  color: #555;
}
.service-btn {
  display: inline-block;
  padding: .5rem 1.25rem;
  background: var(--primary-color);
  color: var(--accent-color);
  border-radius: 2rem;
  font-size: .9rem;
  transition: background .3s ease, transform .3s ease;
}
.service-btn:hover {
  background: var(--secondary-color);
  transform: translateY(-2px);
  color:var(--accent-color);
}
/* ───────── Shapely Testimonials Section ───────── */
.testimonials-section {
  position: relative;
  background: var(--accent-color);
  color: var(--secondary-color);
  padding: 6rem 0;
  overflow: hidden;
}

/* Üst tarafta yarım daire dalgası */
.testimonials-section::before {
  content: '';
  position: absolute;
  top: -80px; left: 0;
  width: 100%;
  height: 160px;
  background: var(--secondary-color);
  border-radius: 0 0 50% 50% / 0 0 100% 100%;
}

/* Alt tarafta ters yarım daire dalgası */
.testimonials-section::after {
  content: '';
  position: absolute;
  bottom: -80px; left: 0;
  width: 100%;
  height: 160px;
  background: var(--secondary-color);
  border-radius: 50% 50% 0 0 / 100% 100% 0 0;
}

/* Başlık */
.testimonials-section .section-title {
  position: relative;
  z-index: 1;
  font-size: 2.75rem;
  color: var(--primary-color);
  text-transform: uppercase;
  margin-bottom: 3rem;
  margin-top:4rem;
}

/* Kart konteyneri */
.testimonials-section .carousel-inner {
  position: relative;
  z-index: 1;
}

/* Testimonial kutucuk */
.testimonial-box {
  max-width: 600px;
  margin: 0 auto;
  background: var(--secondary-color);
  color: var(--accent-color);
  border-radius: 1rem;
  padding: 2.5rem 2rem;
  box-shadow: 0 12px 30px rgba(0,0,0,0.1);
  transition: transform .3s ease, box-shadow .3s ease;
}

/* Hover efekti */
.testimonial-box:hover {
  transform: translateY(-8px);
  box-shadow: 0 16px 40px rgba(0,0,0,0.15);
}

/* Alıntı simgesi */
.quote-icon {
  display: block;
  font-size: 2.5rem;
  color: var(--accent-color);
  margin-bottom: 1rem;
}

/* Yorum metni */
.testimonial-comment {
  font-style: italic;
  font-size: 1.1rem;
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

/* Yazan kişi */
.testimonial-name {
  font-weight: 700;
  text-align: right;
  font-size: 1rem;
  color: var(--accent-color);
}

/* Kontrol ikonları ve göstergeler */
.carousel-control-prev-icon,
.carousel-control-next-icon {
  filter: invert(1);
  width: 2.5rem;
  height: 2.5rem;
}
.carousel-indicators {
  position: relative;
  bottom: -2rem;
  z-index: 1;
}
.carousel-indicators button {
  width: 14px; height: 14px;
  border-radius: 50%;
  background: var(--secondary-color);
  opacity: 0.5;
  transition: opacity .3s ease;
}
.carousel-indicators .active {
  background: var(--primary-color);
  opacity: 1;
}

/* Responsive ayarlar */
@media (max-width: 767.98px) {
  .testimonials-section { padding: 4rem 0; }
  .testimonial-box { padding: 1.5rem 1rem; }
  .quote-icon { font-size: 2rem; }
  .testimonial-comment { font-size: 1rem; }
  .carousel-indicators { bottom: -1.5rem; }
}
.section-title{
  font-weight: 800;
}
.blog-section {
  background: var(--secondary-color);
  color: var(--accent-color);
}
.blog-section .section-title {
  font-size: 2.5rem;
  color: var(--accent-color);
  text-transform: uppercase;
  margin-bottom: 2rem;
}
.blog-item .card {
  border-radius: .75rem;
  transition: transform .3s ease, box-shadow .3s ease;
}
.blog-item .card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 30px rgba(0,0,0,0.1);
}
.blog-thumb {
  width: 100%;
  height: 180px;
  object-fit: cover;
  border-top-left-radius: .75rem;
  border-top-right-radius: .75rem;
}
.blog-cats {
  margin-bottom: .5rem;
}
.blog-cat {
  display: inline-block;
  background: var(--primary-color);
  color: var(--accent-color);
  padding: .25rem .75rem;
  border-radius: 2rem;
  font-size: .75rem;
  margin-right: .5rem;
}
.card-title a {
  color: var(--secondary-color);
  text-decoration: none;
  transition: color .3s ease;
}
.card-title a:hover {
  color: var(--primary-color);
}
.card-text {
  font-size: .9rem;
  line-height: 1.6;
  color: #555;
}
.blog-btn {
  display: inline-block;
  padding: .5rem 1.25rem;
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
  color: var(--accent-color);
  border-radius: 2rem;
  font-size: .9rem;
  transition: background .3s ease, transform .3s ease;
}
.blog-btn:hover {
  background: linear-gradient(135deg, var(--secondary-color), var(--primary-color));
  transform: translateY(-2px);
  color:var(--accent-color);
}

/* Related Services */
.related-list {
  list-style: none;
  margin:0; padding:0;
}
.related-list li {
  margin-bottom: .75rem;
}
.related-list li a {
  color: var(--secondary-color);
  text-decoration: none;
  transition: color .3s ease;
}
.related-list li a:hover {
  color: var(--primary-color);
}

/* Quick Stats */
.widget-stats .stats-list {
  display: grid;
  grid-template-columns: repeat(2,1fr);
  gap: 1rem;
}
.stat-item {
  text-align: center;
}
.stat-item i {
  font-size: 1.5rem;
  color: var(--primary-color);
  margin-bottom: .25rem;
}
.stat-item .stat-number {
  display: block;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--secondary-color);
}
.stat-item small {
  color: rgba(0,0,0,0.6);
}

/* Responsive */
@media (max-width: 991.98px) {
  .service-detail-hero { padding: 6rem 0; }
  .service-detail-container { padding: 2rem 0; }
  .service-content-area { border:none; padding:0; }
  .service-sidebar { padding:2rem 0 0 0; }
}
/* style.css — Blog Detail */
.blog-detail-hero {
  position: relative;
  background-size: cover;
  background-position: center;
  padding: 8rem 0;
}
.blog-detail-hero .overlay {
  position: absolute; inset:0;
  background: rgba(0,0,0,0.4);
}
.blog-detail-title {
  position: relative;
  color: #fff;
  font-size: 3rem;
  font-weight: 700;
  text-transform: uppercase;
}
.blog-detail-meta {
  position: relative;
  margin-top: 1rem;
}
.blog-detail-meta .meta-item {
  color: rgba(255,255,255,0.85);
  margin-right: 1.5rem;
  font-size: .9rem;
}
.blog-detail-meta .meta-item a {
  color: #fff;
  text-decoration: underline;
}
.breadcrumb-wrapper {
  background: var(--accent-color);
  padding: .75rem 0;
}
.breadcrumb-wrapper .breadcrumb {
  margin: 0;
  background: transparent;
  font-size: .9rem;
}
.breadcrumb-wrapper .breadcrumb-item + .breadcrumb-item::before {
  content: "›";
  color: var(--primary-color);
}
.blog-detail-container {
  padding: 3rem 0;
}
.blog-content-area {
  border-right: 1px solid rgba(0,0,0,0.05);
  padding-right: 2rem;
}
.blog-content {
  line-height: 1.8;
  color: var(--secondary-color);
}
.blog-content h2, .blog-content h3, .blog-content h4 {
  color: var(--primary-color);
  margin-top: 2rem;
}
.blog-content p {
  margin-bottom: 1.5rem;
}
.blog-content blockquote {
  border-left: 4px solid var(--primary-color);
  padding-left: 1rem;
  color: rgba(0,0,0,0.7);
  font-style: italic;
}
.blog-detail-tags {
  margin-top: 2rem;
  font-size: .9rem;
}
.blog-detail-tags span {
  font-weight: 600;
  margin-right: .5rem;
}
.blog-detail-tags a {
  display: inline-block;
  margin-right: .5rem;
  background: var(--secondary-color);
  color: var(--accent-color);
  padding: .25rem .75rem;
  border-radius: 2rem;
  transition: background .3s ease;
}
.blog-detail-tags a:hover {
  background: var(--primary-color);
}
.blog-comments {
  margin-top: 3rem;
}
/* Sidebar */
.blog-sidebar .widget {
  margin-bottom: 2rem;
  background: var(--accent-color);
  padding: 1.5rem;
  border-radius: .75rem;
  box-shadow: 0 8px 25px rgba(0,0,0,0.1);
}
.blog-sidebar .widget-title {
  font-size: 1.2rem;
  color: var(--primary-color);
  margin-bottom: 1rem;
  position: relative;
}
.blog-sidebar .widget-title::after {
  content: "";
  position: absolute; bottom:-6px; left:0;
  width: 30px; height:3px;
  background: var(--secondary-color);
  border-radius: 2px;
}
.widget-search input {
  width: 100%;
  padding: .5rem;
  border: 1px solid rgba(0,0,0,0.1);
  border-radius: .25rem;
}
.widget-cats ul,
.widget-related-posts ul {
  list-style: none; padding: 0; margin: 0;
}
.widget-cats li,
.widget-related-posts li {
  margin-bottom: .75rem;
}
.widget-cats a,
.widget-related-posts a {
  color: var(--secondary-color);
  text-decoration: none;
  transition: color .3s ease;
}
.widget-cats a:hover,
.widget-related-posts a:hover {
  color: var(--primary-color);
}
/* Responsive */
@media (max-width: 991.98px) {
  .blog-detail-hero { padding: 5rem 0; }
  .blog-detail-container { padding: 2rem 0; }
  .blog-content-area { border:none; padding:0; }
}
/* ───────── Modern Comment Section ───────── */
.comment-list {
  list-style: none;
  margin: 0;
  padding: 0;
}
.comment-list .comment {
  background: var(--accent-color);
  border-left: 4px solid var(--primary-color);
  padding: 1.5rem;
  margin-bottom: 1.5rem;
  border-radius: .5rem;
  box-shadow: 0 4px 15px rgba(0,0,0,0.05);
  transition: transform .3s ease, box-shadow .3s ease;
}
.comment-list .comment:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.08);
}
.comment-author {
  display: flex;
  align-items: center;
  margin-bottom: .75rem;
}
.comment-author .avatar {
  width: 50px;
  height: 50px;
  margin-right: .75rem;
  border-radius: 50%;
  overflow: hidden;
  flex-shrink: 0;
}
.comment-author .fn {
  font-weight: 600;
  color: var(--primary-color);
  margin-bottom: .25rem;
}
.comment-metadata {
  font-size: .85rem;
  color: rgba(0,0,0,0.6);
}
.comment-content {
  margin-top: .75rem;
  font-size: .95rem;
  line-height: 1.6;
  color: var(--secondary-color);
}
.comment-list .children {
  margin-left: 3rem;
  margin-top: 1rem;
}
/* Reply Link */
.comment-reply-link {
  font-size: .9rem;
  color: var(--primary-color);
  transition: color .3s ease;
}
.comment-reply-link:hover {
  color: var(--secondary-color);
}

/* ───────── Comment Form ───────── */
#respond,
.comment-respond {
  background: var(--accent-color);
  padding: 2rem;
  border-radius: .75rem;
  box-shadow: 0 4px 15px rgba(0,0,0,0.05);
  margin-top: 2rem;
}
#respond p {
  margin-bottom: 1rem;
}
#respond input,
#respond textarea {
  width: 100%;
  padding: .75rem 1rem;
  border: 1px solid rgba(0,0,0,0.1);
  border-radius: .5rem;
  margin-top: .5rem;
  font-size: .95rem;
}
#respond input:focus,
#respond textarea:focus {
  border-color: var(--primary-color);
  outline: none;
}
#respond .form-submit input {
  display: inline-block;
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
  color: var(--accent-color);
  padding: .75rem 1.5rem;
  border: none;
  border-radius: 2rem;
  font-weight: 600;
  transition: background .3s ease, transform .3s ease;
}
#respond .form-submit input:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.1);
}
/* Widget Search: Input ve Buton Birleşik Modern Stil */
.widget-search .searchform > div {
  display: flex;
  overflow: hidden;
  border-radius: 0.75rem;
  box-shadow: 0 4px 15px rgba(0,0,0,0.05);
}

.widget-search .searchform input#s {
  flex: 1;
  padding: 0.75rem 1rem;
  border: none;
  font-size: 0.95rem;
  color: var(--secondary-color);
  background: var(--accent-color);
  transition: background 0.3s ease, border-color 0.3s ease;
}

.widget-search .searchform input#s::placeholder {
  color: rgba(0,0,0,0.4);
}

.widget-search .searchform input#s:focus {
  outline: none;
  background: var(--accent-color);
}

.widget-search .searchform #searchsubmit {
  padding: 0 1.25rem;
  border: none;
  background: var(--primary-color);
  color: var(--accent-color);
  font-size: 0.95rem;
  width:20%;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.3s ease, transform 0.3s ease;
}

.widget-search .searchform #searchsubmit:hover {
  background: var(--secondary-color);
}

/* ───────── Archive Header ───────── */
.archive-header {
  background: var(--secondary-color);
  color: var(--accent-color);
}
.archive-title {
  font-size: 2.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .05em;
  margin-bottom: .5rem;
}
.archive-desc {
  font-size: 1rem;
  max-width: 700px;
  margin: 0 auto;
  opacity: .85;
}

/* ───────── Archive Listing ───────── */
.archive-listing {
  background: var(--accent-color);
  color: var(--secondary-color);
}
.archive-card {
  border-radius: .75rem;
  transition: transform .3s ease, box-shadow .3s ease;
}
.archive-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 30px rgba(0,0,0,0.1);
}
.archive-thumb img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-top-left-radius: .75rem;
  border-top-right-radius: .75rem;
  transition: transform .4s ease;
}
.archive-thumb:hover img {
  transform: scale(1.05);
}
.card-title a {
  color: var(--secondary-color);
  transition: color .3s ease;
}
.card-title a:hover {
  color: var(--primary-color);
}
.card-text {
  font-size: .9rem;
  line-height: 1.6;
  margin-top: .5rem;
}

/* Archive Read More Butonu */
.archive-btn {
  display: inline-block;
  padding: .5rem 1.5rem;
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
  color: var(--accent-color);
  border-radius: 2rem;
  font-size: .9rem;
  font-weight: 600;
  transition: transform .3s ease, background .3s ease;
}
.archive-btn:hover {
  background: linear-gradient(135deg, var(--secondary-color), var(--primary-color));
  transform: translateY(-2px);
}

/* Pagination */
.pagination-wrapper ul {
  display: inline-flex;
  list-style: none;
  padding: 0;
  margin: 0;
}
.pagination-wrapper li {
  margin: 0 .25rem;
}
.pagination-wrapper a,
.pagination-wrapper span {
  display: block;
  padding: .5rem .75rem;
  background: var(--secondary-color);
  color: var(--accent-color);
  border-radius: .5rem;
  transition: background .3s ease, color .3s ease;
}
.pagination-wrapper .current {
  background: var(--primary-color);
  color: var(--accent-color);
}
.pagination-wrapper a:hover {
  background: var(--primary-color);
}

/* Responsive */
@media (max-width: 991.98px) {
  .archive-title { font-size: 2.25rem; }
  .archive-desc { font-size: .95rem; }
  .archive-thumb img { height: 180px; }
}
/* ─── Kategori & Etiket Badgeleri ───────── */
.post-cats, .post-tags {
  margin: 1.5rem 0;
}
.post-cats span,
.post-tags span {
  font-weight: 600;
  margin-right: .5rem;
  color: var(--primary-color);
}
.post-cat, .post-tag {
  display: inline-block;
  margin-right: .5rem;
  padding: .3rem .8rem;
  border-radius: 2rem;
  font-size: .85rem;
  text-decoration: none;
  transition: background .3s ease, color .3s ease;
}
.post-cat {
  background: var(--primary-color);
  color: var(--accent-color);
}
.post-cat:hover {
  background: var(--secondary-color);
}
.post-tag {
  background: var(--secondary-color);
  color: var(--accent-color);
}
.post-tag:hover {
  background: var(--primary-color);
}

/* ─── Şekilli Görüntü Stili ───────── */



/* ─── Genel Kurumsal Tipografi & Renkler ───────── */
.section-title, .service-title, .blog-detail-title {
  font-family: 'Poppins', sans-serif;
  letter-spacing: .05em;
}
a {
  color: var(--primary-color);
}
a:hover {
  color: var(--secondary-color);
}
/* ───────── 404 Page ───────── */
.error-404 {
  position: relative;
  background: var(--accent-color);
  overflow: hidden;
  padding: 8rem 0;
}

/* Arka planda organik büyük şekil */
.error-404::before {
  content: "";
  position: absolute;
  top: -150px; left: -150px;
  width: 400px; height: 400px;
  background: var(--primary-color);
  border-radius: 50% 30% 60% 40% / 40% 60% 30% 50%;
  opacity: 0.1;
  z-index: 1;
}

/* Alt dalgalı şekil */
.error-404::after {
  content: "";
  position: absolute;
  bottom: -150px; right: -150px;
  width: 500px; height: 500px;
  background: var(--secondary-color);
  border-radius: 60% 40% 50% 50% / 30% 60% 40% 70%;
  opacity: 0.1;
  z-index: 1;
}

/* İçerik Konteyneri */
.error-404 .container {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  z-index: 2;
}

/* Metin Bloğu */
.error-content {
  flex: 1 1 400px;
  padding: 2rem;
}
.error-code {
  font-size: 6rem;
  font-weight: 700;
  color: var(--primary-color);
  margin: 0;
}
.error-title {
  font-size: 2.5rem;
  color: var(--secondary-color);
  margin: 0.5rem 0;
}
.error-message {
  font-size: 1rem;
  line-height: 1.6;
  color: rgba(0,0,0,0.7);
  margin-bottom: 2rem;
}
.error-btn {
  display: inline-block;
  padding: 0.75rem 2rem;
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
  color: var(--accent-color);
  border-radius: 2rem;
  font-weight: 600;
  transition: transform .3s ease, box-shadow .3s ease;
}
.error-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 30px rgba(0,0,0,0.15);
}

/* Görsel Bloğu */
.error-image {
  flex: 1 1 400px;
  text-align: center;
  padding: 2rem;
}
.error-image img {
  max-width: 100%;
  height: auto;
  border-radius: 1rem;
  box-shadow: 0 8px 30px rgba(0,0,0,0.1);
  transition: transform .4s ease;
}
.error-image img:hover {
  transform: scale(1.05);
}

/* Responsive */
@media (max-width: 991.98px) {
  .error-404 .container {
    flex-direction: column-reverse;
    text-align: center;
  }
  .error-image, .error-content {
    flex: 1 1 100%;
  }
  .error-code {
    font-size: 4.5rem;
  }
  .error-title {
    font-size: 2rem;
  }
}
/* ───────── Search Hero ───────── */
.search-hero {
  position: relative;
  background: var(--secondary-color);
  color: var(--accent-color);
  padding: 5rem 0;
  clip-path: polygon(0 0, 100% 0, 100% 85%, 0 100%);
}
.search-hero .search-title {
  font-size: 2.75rem;
  font-weight: 700;
  text-transform: uppercase;
}
.search-hero .search-query {
  font-size: 1.1rem;
  margin-top: .5rem;
  opacity: .9;
}

/* ───────── Search Results Cards ───────── */
.search-card {
  border-radius: .75rem;
  overflow: hidden;
  transition: transform .3s ease, box-shadow .3s ease;
}
.search-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 30px rgba(0,0,0,0.1);
}
.search-thumb img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  clip-path: polygon(0 0, 100% 0, 100% 80%, 0 100%);
  transition: transform .4s ease;
}
.search-thumb:hover img {
  transform: scale(1.05);
}
.card-title a {
  color: var(--secondary-color);
  transition: color .3s ease;
}
.card-title a:hover {
  color: var(--primary-color);
}
.card-text {
  font-size: .95rem;
  line-height: 1.6;
  margin-top: .5rem;
}
.search-btn {
  display: inline-block;
  padding: .5rem 1.5rem;
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
  color: var(--accent-color);
  border-radius: 2rem;
  font-size: .9rem;
  font-weight: 600;
  transition: transform .3s ease, background .3s ease;
}
.search-btn:hover {
  background: linear-gradient(135deg, var(--secondary-color), var(--primary-color));
  transform: translateY(-2px);
}

/* ───────── Pagination ───────── */
.pagination-wrapper ul {
  display: inline-flex;
  list-style: none;
  margin: 0;
  padding: 0;
}
.pagination-wrapper li {
  margin: 0 .25rem;
}
.pagination-wrapper a,
.pagination-wrapper span {
  display: block;
  padding: .5rem .75rem;
  background: var(--secondary-color);
  color: var(--accent-color);
  border-radius: .5rem;
  transition: background .3s ease;
}
.pagination-wrapper .current {
  background: var(--primary-color);
  color: var(--accent-color);
}
.pagination-wrapper a:hover {
  background: var(--primary-color);
}

/* ───────── No Results ───────── */
.no-results {
  color: var(--secondary-color);
}
.no-results-img {
  max-width: 200px;
  display: inline-block;
  filter: drop-shadow(0 8px 30px rgba(0,0,0,0.1));
}
.no-results h3 {
  font-size: 1.75rem;
  margin-bottom: .75rem;
}
.no-results p {
  font-size: 1rem;
}
.no-results a {
  color: var(--primary-color);
  font-weight: 600;
  text-decoration: underline;
}

/* Responsive */
@media (max-width: 991.98px) {
  .search-hero {
    padding: 3.5rem 0;
    clip-path: none;
  }
  .search-thumb img {
    height: 180px;
  }
  .search-hero .search-title {
    font-size: 2.25rem;
  }
}
/* style.css – search.php için şekilli, kurumsal ve SEO-uyumlu stil */

/* ─── Hero ───────── */
.search-hero {
  position: relative;
  background: var(--secondary-color);
  color: var(--accent-color);
  padding: 5rem 0;
  clip-path: polygon(0 0,100% 0,100% 85%,0 100%);
  overflow: hidden;
}
.search-hero::before {
  content: "";
  position: absolute;
  top: -100px; left: -100px;
  width: 300px; height: 300px;
  background: var(--primary-color);
  border-radius: 50% 30% 60% 40% / 60% 40% 30% 50%;
  opacity: 0.1;
}
.search-title {
  font-size: 2.75rem;
  font-weight: 700;
  text-transform: uppercase;
  text-align: center;
}
.search-count {
  font-size: 1.1rem;
  margin-top: .5rem;
  opacity: .9;
  text-align: center;
}

/* ─── Kartlar ───────── */
.search-card {
  border-radius: .75rem;
  overflow: hidden;
  transition: transform .3s ease, box-shadow .3s ease;
}
.search-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 30px rgba(0,0,0,0.1);
}
.search-thumb img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  clip-path: polygon(0 0,100% 0,100% 80%,0 100%);
  transition: transform .4s ease;
}
.search-thumb:hover img {
  transform: scale(1.05);
}
.card-title a {
  color: var(--secondary-color);
  transition: color .3s ease;
}
.card-title a:hover {
  color: var(--primary-color);
}
.card-text {
  font-size: .95rem;
  line-height: 1.6;
  margin-top: .5rem;
}
.search-btn {
  display: inline-block;
  padding: .5rem 1.5rem;
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
  color: var(--accent-color);
  border-radius: 2rem;
  font-size: .9rem;
  font-weight: 600;
  transition: transform .3s ease, background .3s ease;
}
.search-btn:hover {
  background: linear-gradient(135deg, var(--secondary-color), var(--primary-color));
  transform: translateY(-2px);
}

/* ─── Pagination ───────── */
.pagination-wrapper ul {
  display: inline-flex;
  list-style: none;
  margin: 0;
  padding: 0;
}
.pagination-wrapper li {
  margin: 0 .25rem;
}
.pagination-wrapper a,
.pagination-wrapper span {
  display: block;
  padding: .5rem .75rem;
  background: var(--secondary-color);
  color: var(--accent-color);
  border-radius: .5rem;
  transition: background .3s ease;
}
.pagination-wrapper .current {
  background: var(--primary-color);
  color: var(--accent-color);
}
.pagination-wrapper a:hover {
  background: var(--primary-color);
}

/* ─── Sonuç Yok ───────── */
.no-results {
  color: var(--secondary-color);
  text-align: center;
}
.no-results-img {
  max-width: 200px;
  margin: 0 auto 1.5rem;
  filter: drop-shadow(0 8px 30px rgba(0,0,0,0.1));
}
.no-results h3 {
  font-size: 1.75rem;
  margin-bottom: .75rem;
}
.no-results p {
  font-size: 1rem;
}
.no-results a {
  color: var(--primary-color);
  font-weight: 600;
  text-decoration: underline;
}

/* ─── Responsive ───────── */
@media (max-width: 991.98px) {
  .search-hero { padding: 3.5rem 0; clip-path: none; }
  .search-thumb img { height: 180px; }
  .search-title { font-size: 2.25rem; }
}
/* ========== page.php için Özel Stil ========== */

/* ─── Hero Bölümü ─────────────────────────── */
.page-hero {
  position: relative;
  background-size: cover;
  background-position: center;
  padding: 8rem 0;
  clip-path: polygon(0 0,100% 0,100% 80%,0 100%);
  overflow: hidden;
}
.page-hero::before {
  content: "";
  position: absolute; top:-120px; left:-120px;
  width:300px; height:300px;
  background: var(--primary-color);
  border-radius: 50% 30% 60% 40% / 60% 40% 30% 50%;
  opacity: 0.1;
}
.page-hero::after {
  content: "";
  position: absolute; bottom:-140px; right:-140px;
  width:350px; height:350px;
  background: var(--secondary-color);
  border-radius: 40% 60% 30% 70% / 50% 50% 70% 30%;
  opacity: 0.1;
}
.page-hero .hero-overlay {
  position: absolute; inset:0;
  background: rgba(0,0,0,0.4);
}
.page-hero-title {
  position: relative;
  color: var(--accent-color);
  font-size: 3rem;
  font-weight: 700;
  text-transform: uppercase;
  text-align: center;
  z-index: 1;
}

/* ─── İçerik & Yan Görsel ─────────────────── */
.page-content-section {
  background: var(--accent-color);
  color: var(--secondary-color);
  padding: 4rem 0;
}
.page-content {
  font-size: 1rem;
  line-height: 1.75;
  padding-right: 2rem;
}
.page-content img {
  max-width: 100%;
  border-radius: 1rem;
  box-shadow: 0 8px 25px rgba(0,0,0,0.1);
  transition: transform .3s ease, box-shadow .3s ease;
  clip-path: polygon(0 5%,100% 0,100% 95%,0 100%);
}
.page-content img:hover {
  transform: scale(1.02);
  box-shadow: 0 12px 30px rgba(0,0,0,0.15);
}
.page-side-image {
  text-align: center;
}
.page-side-image img {
  width: 100%;
  max-width: 300px;
  border-radius: 2rem 1rem 2rem 1rem;
  box-shadow: 0 12px 30px rgba(0,0,0,0.1);
  transition: transform .4s ease, box-shadow .4s ease;
  clip-path: polygon(20% 0,100% 0,80% 100%,0 100%);
}
.page-side-image img:hover {
  transform: rotate(-2deg) scale(1.03);
  box-shadow: 0 16px 40px rgba(0,0,0,0.15);
}

/* ─── Responsive ─────────────────────────── */
@media (max-width: 991.98px) {
  .page-hero { padding: 5rem 0; clip-path: none; }
  .page-hero-title { font-size: 2.25rem; }
  .page-content { padding-right: 0; }
  .page-side-image { margin-top: 2rem; }
}
/* ───────── Site Footer ───────── */
.site-footer {
  position: relative;
  background: var(--secondary-color);
  color: var(--accent-color);
  padding: 6rem 0 2rem;
  overflow: hidden;
}
.site-footer::before {
  content: "";
  position: absolute;
  top: -100px; left: -100px;
  width: 300px; height: 300px;
  background: var(--primary-color);
  border-radius: 50% 40% 60% 50% / 60% 50% 40% 60%;
  opacity: 0.1;
  z-index: 1;
}
.site-footer::after {
  content: "";
  position: absolute;
  bottom: -120px; right: -120px;
  width: 350px; height: 350px;
  background: var(--primary-color);
  border-radius: 40% 60% 30% 70% / 50% 50% 70% 30%;
  opacity: 0.1;
  z-index: 1;
}

.footer-widgets {
  position: relative;
  z-index: 2;
}
.footer-col {
  margin-bottom: 2rem;
}
.footer-logo {
  max-width: 160px;
  margin-bottom: 1rem;
  transition: transform .3s ease;
}
.footer-logo-link:hover .footer-logo {
  transform: scale(1.05);
}
.footer-about-text {
  font-size: .95rem;
  line-height: 1.6;
  margin-bottom: 1.5rem;
}
.footer-contact-info p {
  font-size: .95rem;
  margin-bottom: .5rem;
}
.footer-contact-info i {
  color: var(--accent-color);
  margin-right: .5rem;
}

.footer-col-title {
  position: relative;
  font-size: 1.25rem;
  margin-bottom: 1rem;
  color: var(--accent-color);
  text-transform: uppercase;
}
.footer-col-title::after {
  content: "";
  position: absolute;
  bottom: -6px; left: 0;
  width: 40px; height: 4px;
  background: var(--accent-color);
  border-radius: 2px;
}

.footer-menu {
  list-style: none;
  padding: 0;
  margin: 0;
}
.footer-menu li {
  margin-bottom: .75rem;
}
.footer-menu a {
  color: var(--accent-color);
  text-decoration: none;
  transition: color .3s ease;
}
.footer-menu a:hover {
  color: var(--primary-color);
}

/* Sub-Footer */
.sub-footer {
  background: var(--primary-color);
  color: var(--accent-color);
  padding: 1rem 0;
  font-size: .9rem;
}
.sub-footer p {
  margin: 0;
  opacity: .8;
}

/* Responsive */
@media (max-width: 767.98px) {
  .site-footer {
    padding: 4rem 0 1rem;
  }
  .footer-widgets .row {
    display: block;
  }
  .footer-col {
    margin-bottom: 2rem;
  }
}
/* ==================== İletişim Sayfası Stil ==================== */

/* Harita */
.contact-map iframe {
  width: 100%;
  height: 450px;
  border: none;
  clip-path: ellipse(100% 85% at 50% 15%);
  margin-bottom: -5px;
  filter: brightness(0.9);
}

/* Detaylar */
.contact-details {
  background: var(--accent-color);
}
.contact-details .detail-box {
  background: #fff;
  border-radius: 1rem;
  padding: 2rem 1.5rem;
  box-shadow: 0 8px 30px rgba(0,0,0,0.1);
  transition: transform .3s ease, box-shadow .3s ease;
}
.contact-details .detail-box:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 40px rgba(0,0,0,0.15);
}
.contact-details .detail-box i {
  font-size: 2.5rem;
  color: var(--primary-color);
  margin-bottom: 1rem;
}
.contact-details .detail-box h4 {
  font-size: 1.25rem;
  color: var(--secondary-color);
  margin-bottom: .75rem;
}
.contact-details .detail-box p {
  font-size: 1rem;
  color: rgba(0,0,0,0.7);
  line-height: 1.5;
}

/* Form Bölümü */
.contact-form-section {
  background: var(--primary-color);
}
.contact-form-section .wpcf7 {
  background: var(--accent-color);
  padding: 3rem 2rem;
  border-radius: 1.5rem;
  box-shadow: 0 12px 30px rgba(0,0,0,0.1);
}
.contact-form-section .wpcf7-form .form-row {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 1.5rem;
}
.contact-form-section .wpcf7-form input,
.contact-form-section .wpcf7-form textarea {
  flex: 1 1 200px;
  padding: 1rem;
  border-radius: 1rem;
  border: 1px solid rgba(0,0,0,0.1);
  transition: border-color .3s ease;
}
.contact-form-section .wpcf7-form input:focus,
.contact-form-section .wpcf7-form textarea:focus {
  border-color: var(--secondary-color);
  outline: none;
}
.contact-form-section .wpcf7-submit {
  display: inline-block;
  background: linear-gradient(135deg, var(--secondary-color), var(--primary-color));
  color: var(--accent-color);
  padding: 1rem 2.5rem;
  font-weight: 600;
  border-radius: 2rem;
  transition: transform .3s ease, box-shadow .3s ease;
}
.contact-form-section .wpcf7-submit:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 30px rgba(0,0,0,0.15);
}

/* Responsive */
@media (max-width: 991.98px) {
  .contact-details .row {
    flex-direction: column;
  }
  .contact-details .detail-box {
    margin-bottom: 1.5rem;
  }
}

/* Theme Name: Nakliyat Theme
 * Description: Custom styles for single-service.php
 * Author: Grok
 */

/* CSS Variables */
:root {
  --primary-color: #1a3c6d; /* Navy blue for corporate feel */
  --secondary-color: #f4a261; /* Gold for premium accents */
  --accent-color: #ffffff; /* White for backgrounds */
  --text-color: #333333; /* Dark gray for text */
  --shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

/* Global Reset */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body, html {
  overflow-x: hidden;
  width: 100%;
  font-family: 'Roboto', sans-serif; /* Professional font */
}

/* Container */
.container {
  max-width: 1200px;
  padding-left: 15px;
  padding-right: 15px;
  margin-left: auto;
  margin-right: auto;
}

/* Hero Section */
.service-hero {
  position: relative;
  background-size: cover;
  background-position: center;
  padding: 8rem 0;
  color: var(--accent-color);
  text-align: center;
}
.service-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.65);
  z-index: 1;
}
.service-hero .container {
  position: relative;
  z-index: 2;
}
.service-hero .service-title {
  font-size: 3rem;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 0.5rem;
  line-height: 1.2;
}
.service-hero .service-subtitle {
  font-size: 1.2rem;
  opacity: 0.9;
}

/* Breadcrumb */
.breadcrumb-section {
  background: var(--primary-color);
  padding: 1rem 0;
  color: var(--accent-color);
}
.breadcrumb-section .breadcrumb {
  background: transparent;
  margin: 0;
  font-size: 0.9rem;
}
.breadcrumb-section .breadcrumb-item a {
  color: var(--accent-color);
  text-decoration: none;
  transition: color 0.3s ease;
}
.breadcrumb-section .breadcrumb-item a:hover {
  color: var(--accent-color);
}
.breadcrumb-section .breadcrumb-item.active {
  color: var(--accent-color);
}
.breadcrumb-section .breadcrumb-item + .breadcrumb-item::before {
  content: "›";
  color: var(--accent-color);
}

/* Main Content Section */
.service-content-section {
  padding: 4rem 0;
  background: #f8f9fa; /* Light gray for contrast */
}
.service-main-content {
  padding-right: 2rem;
}
.service-main-content .service-excerpt {
  font-size: 1.1rem;
  color: var(--text-color);
  line-height: 1.6;
}
.service-main-content .service-full-content {
  font-size: 1rem;
  line-height: 1.8;
  color: var(--text-color);
}
.service-sidebar {
  padding-left: 2rem;
}

/* Widgets */
.widget {
  background: var(--accent-color);
  border-radius: 0.75rem;
  padding: 1.5rem;
  margin-bottom: 2rem;
  box-shadow: var(--shadow);
  transition: transform 0.3s ease;
}
.widget:hover {
  transform: translateY(-5px);
}
.widget-title {
  font-size: 1.3rem;
  color: var(--primary-color);
  margin-bottom: 1rem;
  position: relative;
  font-weight: 600;
}
.widget-title::after {
  content: "";
  position: absolute;
  bottom: -8px;
  left: 0;
  width: 40px;
  height: 3px;
  background: var(--secondary-color);
  border-radius: 2px;
}

/* CTA Widget */
.widget-cta .btn-cta {
  display: block;
  text-align: center;
  padding: 0.75rem;
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
  color: var(--accent-color);
  border-radius: 2rem;
  font-weight: 600;
  text-decoration: none;
  font-size: 1rem;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.widget-cta .btn-cta:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

/* Contact Widget */
.widget-contact {
  text-align: center;
  position: relative;
  overflow: hidden;
}
.widget-contact::before {
  content: "";
  position: absolute;
  top: -40px;
  right: -40px;
  width: 100px;
  height: 100px;
  background: var(--primary-color);
  border-radius: 50%;
  opacity: 0.1;
}
.widget-contact p {
  font-size: 1rem;
  color: var(--text-color);
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
}
.widget-contact p i {
  font-size: 1.2rem;
  color: var(--primary-color);
  margin-right: 0.5rem;
}
.widget-contact .btn-whatsapp {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
  color: var(--accent-color);
  border-radius: 2rem;
  font-weight: 600;
  text-decoration: none;
  font-size: 1rem;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.widget-contact .btn-whatsapp:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

/* Related Services Widget */
.widget-related .related-services {
  display: grid;
  gap: 1rem;
}
.widget-related .related-service-card {
  display: flex;
  align-items: center;
  background: #f8f9fa;
  border-radius: 0.5rem;
  overflow: hidden;
  text-decoration: none;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.widget-related .related-service-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}
.widget-related .related-service-image {
  flex: 0 0 80px;
  height: 80px;
  overflow: hidden;
}
.widget-related .related-service-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.widget-related .related-service-title {
  flex: 1;
  padding: 0.75rem;
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--text-color);
  line-height: 1.4;
}

/* Stats Widget */
.widget-stats .stats-list {
  display: grid;
  gap: 1rem;
}
.widget-stats .stat-item {
  text-align: center;
}
.widget-stats .stat-item i {
  font-size: 1.5rem;
  color: var(--primary-color);
  margin-bottom: 0.5rem;
}
.widget-stats .stat-number {
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--primary-color);
}
.widget-stats .stat-label {
  font-size: 0.9rem;
  color: var(--text-color);
}

/* Categories and Tags */
.post-cats, .post-tags {
  font-size: 0.9rem;
}
.post-cats span, .post-tags span {
  font-weight: 600;
  color: var(--primary-color);
}
.post-cats a, .post-tags a {
  color: var(--text-color);
  text-decoration: none;
  margin-left: 0.5rem;
  padding: 0.25rem 0.5rem;
  border-radius: 0.25rem;
  background: #e9ecef;
  transition: backgroun
System: d 0.3s ease, color 0.3s ease;
}
.post-cats a:hover, .post-tags a:hover {
  background: var(--primary-color);
  color: var(--accent-color);
}

/* Responsive Styles */
@media (max-width: 767.98px) {
  .container {
      padding-left: 10px;
      padding-right: 10px;
  }

  .service-hero {
      padding: 5rem 1rem;
  }
  .service-hero .service-title {
      font-size: 2rem;
  }
  .service-hero .service-subtitle {
      font-size: 1rem;
  }

  .breadcrumb-section {
      padding: 0.75rem 0;
  }
  .breadcrumb-section .breadcrumb {
      font-size: 0.8rem;
      flex-wrap: nowrap;
      overflow-x: hidden;
  }

  .service-content-section {
      padding: 2rem 0;
  }
  .service-main-content {
      padding-right: 0;
      margin-bottom: 2rem;
  }
  .service-sidebar {
      padding-left: 0;
  }

  .row {
      margin-left: 0;
      margin-right: 0;
  }
  .col-lg-8, .col-lg-4 {
      padding-left: 10px;
      padding-right: 10px;
      width: 100%;
  }

  .widget {
      padding: 1rem;
      margin-bottom: 1.5rem;
      border-radius: 0.5rem;
  }
  .widget-title {
      font-size: 1.2rem;
  }
  .widget-title::after {
      width: 30px;
      height: 2px;
  }

  .widget-cta .btn-cta, .widget-contact .btn-whatsapp {
      padding: 0.5rem 1rem;
      font-size: 0.9rem;
      border-radius: 1.5rem;
  }
  .widget-contact p {
      font-size: 0.9rem;
  }
  .widget-contact p i {
      font-size: 1rem;
  }

  .widget-related .related-services li {
      font-size: 0.9rem;
  }

  .widget-stats .stat-number {
      font-size: 1.5rem;
  }
  .widget-stats .stat-label {
      font-size: 0.8rem;
  }
}

/* Blog Hero Section */
.blog-hero {
  position: relative;
  background-size: cover;
  background-position: center;
  padding: 8rem 0;
  color: var(--accent-color);
  text-align: center;
}
.blog-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.65);
  z-index: 1;
}
.blog-hero .container {
  position: relative;
  z-index: 2;
}
.blog-hero .blog-title {
  font-size: 3rem;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 1rem;
  line-height: 1.2;
}
.blog-hero .blog-meta {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  font-size: 0.95rem;
}
.blog-hero .meta-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.blog-hero .meta-item i {
  color: var(--secondary-color);
}
.blog-hero .meta-item a {
  color: var(--accent-color);
  text-decoration: none;
  transition: color 0.3s ease;
}
.blog-hero .meta-item a:hover {
  color: var(--secondary-color);
}

/* Breadcrumb */
.breadcrumb-section {
  background: var(--primary-color);
  padding: 1rem 0;
  color: var(--accent-color);
}
.breadcrumb-section .breadcrumb {
  background: transparent;
  margin: 0;
  font-size: 0.9rem;
}


/* Main Content Section */
.blog-content-section {
  padding: 4rem 0;
  background: #f8f9fa; /* Light gray for contrast */
}
.blog-main-content {
  padding-right: 2rem;
}
.blog-main-content .blog-content {
  font-size: 1rem;
  line-height: 1.8;
  color: var(--text-color);
}
.blog-sidebar {
  padding-left: 2rem;
}

/* Widgets */
.widget {
  background: var(--accent-color);
  border-radius: 0.75rem;
  padding: 1.5rem;
  margin-bottom: 2rem;
  box-shadow: var(--shadow);
  transition: transform 0.3s ease;
}
.widget:hover {
  transform: translateY(-5px);
}
.widget-title {
  font-size: 1.3rem;
  color: var(--primary-color);
  margin-bottom: 1rem;
  position: relative;
  font-weight: 600;
}
.widget-title::after {
  content: "";
  position: absolute;
  bottom: -8px;
  left: 0;
  width: 40px;
  height: 3px;
  background: var(--secondary-color);
  border-radius: 2px;
}

/* Search Widget */
.widget-search .search-form {
  display: flex;
  gap: 0.5rem;
}
.widget-search .search-form input[type="search"] {
  flex: 1;
  padding: 0.75rem;
  border: 1px solid #e9ecef;
  border-radius: 0.5rem;
  font-size: 0.95rem;
}
.widget-search .search-form input[type="submit"] {
  padding: 0.75rem 1.5rem;
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
  color: var(--accent-color);
  border: none;
  border-radius: 0.5rem;
  font-weight: 600;
  cursor: pointer;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.widget-search .search-form input[type="submit"]:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

/* Categories Widget */
.widget-cats .category-list {
  display: grid;
  gap: 0.5rem;
}
.widget-cats .category-item {
  display: block;
  padding: 0.75rem;
  background: #f8f9fa;
  border-radius: 0.5rem;
  text-decoration: none;
  font-size: 0.95rem;
  color: var(--text-color);
  transition: background 0.3s ease, color 0.3s ease;
}
.widget-cats .category-item:hover {
  background: var(--primary-color);
  color: var(--accent-color);
}

/* Related Posts Widget */
.widget-related-posts .related-posts {
  display: grid;
  gap: 1rem;
}
.widget-related-posts .related-post-card {
  display: flex;
  align-items: center;
  background: #f8f9fa;
  border-radius: 0.5rem;
  overflow: hidden;
  text-decoration: none;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.widget-related-posts .related-post-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}
.widget-related-posts .related-post-image {
  flex: 0 0 80px;
  height: 80px;
  overflow: hidden;
}
.widget-related-posts .related-post-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.widget-related-posts .related-post-title {
  flex: 1;
  padding: 0.75rem;
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--text-color);
  line-height: 1.4;
}

/* Categories and Tags */
.post-cats, .post-tags {
  font-size: 0.9rem;
}
.post-cats span, .post-tags span {
  font-weight: 600;
  color: var(--primary-color);
}
.post-cats a, .post-tags a {
  color: var(--text-color);
  text-decoration: none;
  margin-left: 0.5rem;
  padding: 0.25rem 0.5rem;
  border-radius: 0.25rem;
  background: #e9ecef;
  transition: background 0.3s ease, color 0.3s ease;
}
.post-cats a:hover, .post-tags a:hover {
  background: var(--primary-color);
  color: var(--accent-color);
}

/* Comments */
.blog-comments {
  margin-top: 3rem;
}
.blog-comments .comment-respond .comment-form {
  display: grid;
  gap: 1rem;
}
.blog-comments .comment-respond .comment-form input,
.blog-comments .comment-respond .comment-form textarea {
  padding: 0.75rem;
  border: 1px solid #e9ecef;
  border-radius: 0.5rem;
  font-size: 0.95rem;
}
.blog-comments .comment-respond .comment-form input[type="submit"] {
  padding: 0.75rem 1.5rem;
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
  color: var(--accent-color);
  border: none;
  border-radius: 0.5rem;
  font-weight: 600;
  cursor: pointer;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.blog-comments .comment-respond .comment-form input[type="submit"]:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

/* Responsive Styles */
@media (max-width: 767.98px) {
  .container {
      padding-left: 10px;
      padding-right: 10px;
  }

  .blog-hero {
      padding: 5rem 1rem;
  }
  .blog-hero .blog-title {
      font-size: 2rem;
  }
  .blog-hero .blog-meta {
      flex-direction: column;
      gap: 0.75rem;
      font-size: 0.9rem;
  }

  .breadcrumb-section {
      padding: 0.75rem 0;
  }
  .breadcrumb-section .breadcrumb {
      font-size: 0.8rem;
      flex-wrap: nowrap;
      overflow-x: hidden;
  }

  .blog-content-section {
      padding: 2rem 0;
  }
  .blog-main-content {
      padding-right: 0;
      margin-bottom: 2rem;
  }
  .blog-sidebar {
      padding-left: 0;
  }

  .row {
      margin-left: 0;
      margin-right: 0;
  }
  .col-lg-8, .col-lg-4 {
      padding-left: 10px;
      padding-right: 10px;
      width: 100%;
  }

  .widget {
      padding: 1rem;
      margin-bottom: 1.5rem;
      border-radius: 0.5rem;
  }
  .widget-title {
      font-size: 1.2rem;
  }
  .widget-title::after {
      width: 30px;
      height: 2px;
  }

  .widget-search .search-form {
      flex-direction: column;
  }
  .widget-search .search-form input[type="submit"] {
      padding: 0.5rem;
      font-size: 0.9rem;
  }

  .widget-cats .category-item {
      font-size: 0.9rem;
      padding: 0.5rem;
  }

  .widget-related-posts .related-post-card {
      flex-direction: column;
      align-items: flex-start;
  }
  .widget-related-posts .related-post-image {
      width: 100%;
      height: 120px;
  }
  .widget-related-posts .related-post-title {
      padding: 0.5rem;
      font-size: 0.9rem;
  }
}
.slick-prev, .slick-next {
  font-size: 0;
  line-height: 0;
  position: absolute;
  top: 50%;
  display: block;
  width: 40px;
  height: 40px;
  padding: 0;
  transform: translateY(-50%);
  cursor: pointer;
  border: none;
  background: var(--primary-color);
  border-radius: 50%;
  z-index: 1;
}
.slick-prev:before, .slick-next:before {
  font-family: 'Font Awesome 5 Free';
  font-weight: 900;
  font-size: 20px;
  color: var(--accent-color);
}
.slick-prev:before {
  content: '\f053';
}
.slick-next:before {
  content: '\f054';
}
.slick-prev {
  left: 10px;
}
.slick-next {
  right: 10px;
}
.slick-dots {
  text-align: center;
  padding: 1rem 0 0;
}
.slick-dots li {
  display: inline-block;
  margin: 0 5px;
}
.slick-dots li button {
  font-size: 0;
  width: 12px;
  height: 12px;
  background: #ccc;
  border: none;
  border-radius: 50%;
  cursor: pointer;
}
.slick-dots li.slick-active button {
  background: var(--primary-color);
}
.contact-icons {
  position: fixed;
  bottom: 20px;
  left: 20px;
  display: flex;
  flex-direction: column;
  gap: 15px;
  z-index: 1000;
}
.contact-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
  color: var(--accent-color);
  border-radius: 50%;
  text-decoration: none;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.contact-icon:hover {
  transform: scale(1.1);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}
.contact-icon i {
  font-size: 24px;
}
.whatsapp-icon{
  background:#128c7e;
}
@media (max-width: 767.98px) {

  /* Contact Icons Mobile */
  .contact-icons {
      flex-direction: row;
      bottom: 0;
      left: 0;
      right: 0;
      width: 100%;
      gap: 0;
      background: var(--secondary-color);
      box-shadow: 0 -2px 5px rgba(0, 0, 0, 0.1);
      padding: 10px 0;
  }
  .contact-icon {
      flex: 1;
      width: auto;
      height: 44px;
      border-radius: 0;
      margin: 0 5px;
  }
  .contact-icon i {
      font-size: 20px;
  }
}