 /* Hero bölümü içerik yerleşimi düzenlemesi */
 .hero-prime .hero-box-prime .row {
     align-items: center;
 }

 /* Hizmetler Wrapper */
 .hero-services-wrapper-prime {
     position: relative;
     z-index: 2;
     padding-left: 20px;
 }

 /* Üst etiket (Hizmetlerimiz badge) */
 .hero-services-label-prime {
     display: inline-flex;
     align-items: center;
     gap: 10px;
     background: rgba(255, 255, 255, 0.08);
     backdrop-filter: blur(15px);
     -webkit-backdrop-filter: blur(15px);
     border: 1px solid rgba(255, 255, 255, 0.18);
     color: #ffffff;
     padding: 9px 20px;
     border-radius: 50px;
     font-size: 14px;
     font-weight: 500;
     letter-spacing: 0.3px;
     margin-bottom: 22px;
 }

 .hero-services-label-prime::before {
     content: "";
     display: inline-block;
     width: 8px;
     height: 8px;
     background: #0098da;
     border-radius: 50%;
     animation: heroDotPulse 1.8s ease-in-out infinite;
 }

 @keyframes heroDotPulse {

     0%,
     100% {
         opacity: 1;
         transform: scale(1);
         box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.6);
     }

     50% {
         opacity: 0.6;
         transform: scale(1.2);
         box-shadow: 0 0 0 8px rgba(255, 255, 255, 0);
     }
 }

 /* Slider kutusu */
 .hero-services-slider-prime {
     position: relative;
     overflow: hidden;
     border-radius: 24px;
 }

 .hero-services-slider-prime .swiper {
     padding: 6px 4px 4px;
 }

 /* Hizmet kartı */
 .hero-service-card-prime {
     background: rgba(255, 255, 255, 0.07);
     backdrop-filter: blur(22px);
     -webkit-backdrop-filter: blur(22px);
     border: 1px solid rgba(255, 255, 255, 0.14);
     border-radius: 22px;
     padding: 38px 34px;
     transition: all 0.45s cubic-bezier(.2, .7, .3, 1);
     min-height: 340px;
     display: flex;
     flex-direction: column;
     justify-content: space-between;
     position: relative;
     overflow: hidden;
 }
 .hero-service-card-prime.capital-service-card {
    background: rgb(25 155 220);
    border-color: rgba(255, 255, 255, 0.28);
    transform: translateY(-4px);
    backdrop-filter: blur(22px);
    -webkit-backdrop-filter: blur(22px);
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 22px;
    padding: 38px 34px;
    transition: all 0.45s cubic-bezier(.2, .7, .3, 1);
    max-height: 280px;
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    position: relative;
    overflow: hidden;
 }

 .hero-service-card-prime::before {
     content: "";
     position: absolute;
     top: -50%;
     right: -50%;
     width: 200px;
     height: 200px;
     background: radial-gradient(circle, rgba(255, 255, 255, 0.10) 0%, rgba(255, 255, 255, 0) 70%);
     border-radius: 50%;
     transition: all 0.6s ease;
     pointer-events: none;
 }

 .hero-service-card-prime:hover {
     background: rgba(255, 255, 255, 0.11);
     border-color: rgba(255, 255, 255, 0.28);
     transform: translateY(-4px);
 }

 .hero-service-card-prime.capital-service-card:hover {
    background: #244b8a;
    border-color: rgba(255, 255, 255, 0.28);
    transform: translateY(-4px);
    border-bottom: 6px solid #0098db;
 }

 .hero-service-card-prime:hover::before {
     transform: scale(1.4);
 }
 .hero-service-card-prime.capital-service-card:hover::before {
     transform: scale(1.4);
 }

 /* Kart içerik üst kısım */
 .hero-service-card-top {
     position: relative;
     z-index: 1;
 }

 /* İkon kutusu */
 .hero-service-card-icon {
     width: 72px;
     height: 72px;
     background: rgba(255, 255, 255, 0.10);
     border: 1px solid rgba(255, 255, 255, 0.16);
     border-radius: 18px;
     display: inline-flex;
     align-items: center;
     justify-content: center;
     margin-bottom: 24px;
     transition: all 0.4s ease;
 }

 .hero-service-card-prime:hover .hero-service-card-icon {
     background: rgba(255, 255, 255, 0.18);
     transform: rotate(-6deg) scale(1.05);
 }

 .hero-service-card-icon img {
     width: 36px;
     height: 36px;
     filter: brightness(0) invert(1);
 }

 /* Başlık ve açıklama */
 .hero-service-card-prime h3 {
     color: #ffffff;
     font-size: 22px;
     font-weight: 600;
     margin-bottom: 12px;
     line-height: 1.3;
 }

 .hero-service-card-prime h3 a {
     color: #ffffff;
     text-decoration: none;
     transition: opacity 0.3s ease;
 }

 .hero-service-card-prime h3 a:hover {
     opacity: 0.85;
 }

 .hero-service-card-prime p {
     color: rgba(255, 255, 255, 0.75);
     font-size: 14.5px;
     line-height: 1.65;
     margin-bottom: 0;
 }

 /* Buton */
 .hero-service-card-btn {
     margin-top: 26px;
     position: relative;
     z-index: 1;
 }

 .hero-service-card-btn a {
     display: inline-flex;
     align-items: center;
     gap: 10px;
     color: #ffffff;
     text-decoration: none;
     font-weight: 500;
     font-size: 14.5px;
     padding-bottom: 6px;
     border-bottom: 1px solid rgba(255, 255, 255, 0.4);
     transition: all 0.35s ease;
 }

 .hero-service-card-btn a:hover {
     gap: 14px;
     border-bottom-color: rgba(255, 255, 255, 1);
 }

 .hero-service-card-btn a i {
     font-size: 12px;
     transition: transform 0.35s ease;
 }

 .hero-service-card-btn a:hover i {
     transform: translateX(4px);
 }

 /* Pagination */
 .hero-services-pagination-prime {
     text-align: center;
     margin-top: 24px;
     position: relative;
 }

 .hero-services-pagination-prime .swiper-pagination-bullet {
     background: rgba(255, 255, 255, 0.35);
     opacity: 1;
     width: 9px;
     height: 9px;
     margin: 0 5px !important;
     transition: all 0.35s ease;
 }

 .hero-services-pagination-prime .swiper-pagination-bullet-active {
     background: #ffffff;
     width: 28px;
     border-radius: 5px;
 }

 /* Responsive */
 @media (max-width: 1399px) {
     .hero-service-card-prime {
         padding: 32px 28px;
         min-height: 320px;
     }

     .hero-service-card-prime h3 {
         font-size: 20px;
     }
 }

 @media (max-width: 1199px) {
     .hero-services-wrapper-prime {
         padding-left: 0;
         margin-top: 60px;
     }

     .hero-service-card-prime {
         min-height: auto;
     }
 }

 @media (max-width: 767px) {
     .hero-service-card-prime {
         padding: 28px 24px;
     }

     .hero-service-card-icon {
         width: 62px;
         height: 62px;
         margin-bottom: 20px;
     }

     .hero-service-card-icon img {
         width: 30px;
         height: 30px;
     }

     .hero-service-card-prime h3 {
         font-size: 19px;
     }

     .hero-service-card-prime p {
         font-size: 14px;
     }
 }

 /* ============================================ */
 /* Custom Header - Cam Efekti & Tam Genişlik    */
 /* ============================================ */

 /* Sticky header floating cam bar yap */
 .main-header.main-header-prime .header-sticky {
     margin: 18px 24px 0;
     border-radius: 60px;
  background: rgb(255 255 255 / 10%);
    backdrop-filter: blur(15px) saturate(150%) brightness(1.1) !important;
    -webkit-backdrop-filter: blur(15px) saturate(150%) brightness(1.1) !important;
     border: 1px solid rgba(255, 255, 255, 0.15);
     box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12);
     transition: all 0.4s cubic-bezier(.2, .7, .3, 1);
 }

 /* Scroll edilince sabitlenince koyulaşan görünüm */
 .main-header.main-header-prime.sticky .header-sticky,
 .main-header.main-header-prime .header-sticky.fixed-header {
     margin: 12px 18px 0;
     background: rgba(20, 24, 35, 0.72);
     backdrop-filter: blur(28px) saturate(200%);
     -webkit-backdrop-filter: blur(28px) saturate(200%);
     border-color: rgba(255, 255, 255, 0.12);
     box-shadow: 0 10px 40px rgba(0, 0, 0, 0.25);
 }

 /* Container'ı tam genişliğe aç - logo + tüm başlıklar sığsın */
 .main-header.main-header-prime .navbar>.container {
     max-width: 100%;
     padding-left: 30px;
     padding-right: 30px;
 }

 .main-header.main-header-prime .navbar {
     padding: 6px 0;
 }

 /* Logo boyutunu hafif küçült (genişlik kazanmak için) */
 .main-header.main-header-prime .navbar-brand img {
     width: 250px !important;
 }

 /* Menü öğeleri arası boşluk - sıkışık görünmesin */
 .main-header.main-header-prime .navbar-nav .nav-item .nav-link {
    padding: 12px 12px !important;
    font-size: 16px;
    white-space: nowrap;
    transition: opacity 0.3s ease;
 }

 .main-header.main-header-prime .navbar-nav .nav-item .nav-link:hover {
     opacity: 0.75;
 }

 /* Header buton - cam barın içinde rahat dursun */
 .main-header.main-header-prime .header-btn .btn-default {
     padding: 12px 24px;
     font-size: 14px;
     white-space: nowrap;
 }

 /* Submenu açılırken cam efekti uygulansın - tutarlı görünüm */
 .main-header.main-header-prime .navbar-nav .submenu>ul {
     backdrop-filter: blur(20px) saturate(180%);
     -webkit-backdrop-filter: blur(20px) saturate(180%);
     border: 1px solid rgba(255, 255, 255, 0.12);
     border-radius: 18px;
     overflow: hidden;
     margin-top: 10px;
     padding: 8px;
     box-shadow: 0 12px 40px rgba(0, 0, 0, 0.3);
 }

 .main-header.main-header-prime .navbar-nav .submenu>ul .nav-link {
     border-radius: 10px;
     transition: all 0.25s ease;
 }

 .main-header.main-header-prime .navbar-nav .submenu>ul .nav-link:hover {
     background: rgba(255, 255, 255, 0.08);
 }

 /* Responsive: küçük ekranlarda kenar boşluğu ve padding daralsın */
 @media (max-width: 1499px) {
     .main-header.main-header-prime .navbar-nav .nav-item .nav-link {
         padding: 12px 11px !important;
         font-size: 14.5px;
     }

     .main-header.main-header-prime .navbar-brand img {
         width: 180px !important;
     }
 }

 @media (max-width: 1399px) {
     .main-header.main-header-prime .header-sticky {
         margin: 14px 16px 0;
     }

     .main-header.main-header-prime .navbar-nav .nav-item .nav-link {
         padding: 11px 9px !important;
         font-size: 14px;
     }

     .main-header.main-header-prime .navbar>.container {
         padding-left: 22px;
         padding-right: 22px;
     }
 }

 @media (max-width: 1199px) {
     .main-header.main-header-prime .header-sticky {
         margin: 10px 12px 0;
         border-radius: 24px;
     }
 }

 @media (max-width: 991px) {
     .main-header.main-header-prime .header-sticky {
         margin: 10px 10px 0;
         border-radius: 20px;
         padding: 5px 12px;
     }
 }

 .hero-service-card-icon img {
     width: 36px;
     height: 36px;
     filter: brightness(0) invert(1);
 }

 .hero-service-card-icon i {
     font-size: 30px;
     color: #ffffff;
     line-height: 1;
 }

 /* Hero altbaşlık favicon ikonu */
 .hero-satisfy-client-content-prime p {
     display: inline-flex;
     align-items: center;
     gap: 10px;
     line-height: 1;
 }

 .hero-satisfy-client-content-prime p .capital-sigorta-favicon {
     width: 22px;
     height: 22px;
     object-fit: contain;
     flex-shrink: 0;
 }

 /* ============================================ */
 /* Çözüm Ortakları Kayan Logo Şeridi             */
 /* ============================================ */

 /* Mevcut span text stillerini logo span'larında geçersiz kıl */
 .partner-ticker-prime .scrolling-content-prime span.partner-logo-prime {
     font-size: 0;
     height: 60px;
     display: inline-flex;
     align-items: center;
     justify-content: center;
     padding: 0 20px;
     flex-shrink: 0;
 }

 /* Logo görselleri */
 .partner-ticker-prime .partner-logo-prime img {
     max-height: 145px;
     max-width: 200px;
     width: auto;
     height: auto;
     object-fit: contain;
     filter: brightness(0) invert(1);
     opacity: 0.75;
     transition: opacity 0.4s ease;
 }

 .partner-ticker-prime .partner-logo-prime:hover img {
     opacity: 1;
 }

 /* Şerit dikey ortalama */
 .partner-ticker-prime .scrolling-ticker-box-prime {
     align-items: center;
 }

 @media (max-width: 991px) {
     .partner-ticker-prime .scrolling-content-prime span.partner-logo-prime {
         height: 50px;
         padding: 0 15px;
     }

     .partner-ticker-prime .partner-logo-prime img {
         max-height: 125px;
         max-width: 200px;
     }
 }

 @media (max-width: 767px) {
     .partner-ticker-prime .scrolling-content-prime span.partner-logo-prime {
         height: 44px;
         padding: 0 12px;
     }

     .partner-ticker-prime .partner-logo-prime img {
         max-height: 125px;
         max-width: 200px;
     }
 }

 /* ============================================ */
 /* Sosyal Medya & Telefon Linkleri Stilleri      */
 /* ============================================ */

 /* Footer içindeki çoklu telefon listesi */
 .footer-phone-list-prime {
     list-style: none;
     padding: 0;
     margin: 8px 0 0;
 }

 .footer-phone-list-prime li {
     margin-bottom: 6px;
 }

 .footer-phone-list-prime li:last-child {
     margin-bottom: 0;
 }

 .footer-phone-list-prime li a {
     color: #ffffff;
     font-size: 16px;
     font-weight: 500;
     transition: color 0.3s ease, transform 0.3s ease;
     display: inline-flex;
     align-items: center;
     gap: 8px;
 }

 .footer-phone-list-prime li a:hover {
     color: #FFB967;
     transform: translateX(3px);
 }

 .footer-phone-list-prime li a i {
     font-size: 13px;
     opacity: 0.7;
 }

 /* Şube adres listesi */
 .footer-branch-list-prime {
     list-style: none;
     padding: 0;
     margin: 0;
 }

 .footer-branch-list-prime li {
     margin-bottom: 16px;
     padding-left: 22px;
     position: relative;
     color: #ffffff;
     line-height: 1.55;
     font-size: 14px;
 }

 .footer-branch-list-prime li:last-child {
     margin-bottom: 0;
 }

 .footer-branch-list-prime li::before {
     content: "\f3c5";
     font-family: "Font Awesome 6 Free";
     font-weight: 900;
     position: absolute;
     left: 0;
     top: 2px;
     color: #FFB967;
     font-size: 14px;
 }

 .footer-branch-list-prime li strong {
     color: #FFB967;
     font-weight: 600;
     display: block;
     margin-bottom: 3px;
     font-size: 14px;
 }

 /* ============================================ */
 /* Footer Yenilenmiş Tasarım - Capital Sigorta   */
 /* Renk paleti: #0098da                          */
 /* ============================================ */

 /* === LOGO CAM EFEKTLİ KART === */
 .footer-logo-glass-prime {
     display: inline-flex;
     align-items: center;
     justify-content: center;
     background: rgba(255, 255, 255, 0.06);
     backdrop-filter: blur(20px) saturate(160%);
     -webkit-backdrop-filter: blur(20px) saturate(160%);
     border: 1px solid rgba(255, 255, 255, 0.12);
     border-radius: 16px;
     padding: 22px 28px;
     position: relative;
     overflow: hidden;
     transition: all 0.5s cubic-bezier(.2, .7, .3, 1);
     cursor: pointer;
 }

 .footer-logo-glass-prime::before {
     content: "";
     position: absolute;
     top: -50%;
     left: -100%;
     width: 60%;
     height: 200%;
     background: linear-gradient(120deg, transparent 0%, rgba(0, 152, 218, 0.18) 50%, transparent 100%);
     transform: skewX(-20deg);
     transition: left 0.7s ease;
 }

 .footer-logo-glass-prime:hover {
     background: rgba(0, 152, 218, 0.10);
     border-color: rgba(0, 152, 218, 0.45);
     transform: translateY(-3px);
     box-shadow: 0 12px 32px rgba(0, 152, 218, 0.22);
 }

 .footer-logo-glass-prime:hover::before {
     left: 130%;
 }

 .footer-logo-glass-prime img {
     position: relative;
     z-index: 1;
     max-width: 250px;
     transition: transform 0.4s ease;
 }

 .footer-logo-glass-prime:hover img {
     transform: scale(1.05);
 }

 /* === BAŞLIKLARDA HOVER EFEKTİ === */
 .footer-heading-hover {
     position: relative;
     display: inline-block;
     cursor: default;
     transition: color 0.4s ease, transform 0.4s ease;
     padding-bottom: 6px;
 }

 .footer-heading-hover::after {
     content: "";
     position: absolute;
     bottom: -2px;
     left: 0;
     width: 28px;
     height: 2px;
     background: #0098da;
     border-radius: 2px;
     transition: width 0.45s cubic-bezier(.2, .7, .3, 1);
 }

 .footer-heading-hover:hover {
     color: #0098da;
     transform: translateX(3px);
 }

 .footer-heading-hover:hover::after {
     width: 100%;
 }

 /* === HIZLI BAĞLANTILAR & HİZMET LİNKLERİ HOVER === */
 .footer-links-prime ul li a {
     transition: color 0.35s ease, padding-left 0.35s ease;
     position: relative;
 }

 .footer-links-prime ul li a:hover {
     color: #0098da;
     padding-left: 4px;
 }



 .footer-email-box-prime p {
     color: rgba(255, 255, 255, 0.65);
     font-size: 13px;
     margin-bottom: 8px;
     text-transform: uppercase;
     letter-spacing: 0.8px;
 }

 .footer-email-box-prime h3 {
     font-size: 17px;
     margin: 0;
     word-break: break-word;
 }

 .footer-email-box-prime h3 a {
     color: #ffffff;
     transition: color 0.35s ease;
 }

 .footer-email-box-prime h3 a:hover {
     color: #0098da;
 }

 /* === FOOTER KOLON DAĞILIMI YENİDEN ===
   3 kolon: Hızlı Bağlantılar (geniş) + Hizmetler (geniş) + Telefonlar (dar) */
 .footer-links-box-redesigned {
     display: grid;
     grid-template-columns: 1.2fr 1.2fr 0.85fr;
     gap: 30px 4vw;
     margin-left: 5.208vw;
 }

 .footer-links-box-redesigned .footer-links-prime {
     width: 100%;
     max-width: 100%;
 }

 .footer-links-box-redesigned .footer-links-prime::before {
     display: none;
 }

 @media (max-width: 1399px) {
     .footer-links-box-redesigned {
         gap: 30px 3vw;
     }
 }

 @media (max-width: 1199px) {
     .footer-links-box-redesigned {
         grid-template-columns: 1fr 1fr;
         margin-left: 0;
     }
 }

 @media (max-width: 767px) {
     .footer-links-box-redesigned {
         grid-template-columns: 1fr;
     }
 }

 /* === ŞUBE KARTI - YENİ GENİŞ TASARIM === */
 .footer-branch-card-prime {
     background: rgba(255, 255, 255, 0.04);
     backdrop-filter: blur(14px);
     -webkit-backdrop-filter: blur(14px);
     border: 1px solid rgba(255, 255, 255, 0.10);
     border-radius: 16px;
     padding: 22px 24px;
     margin-top: 30px;
     transition: all 0.45s cubic-bezier(.2, .7, .3, 1);
     position: relative;
     overflow: hidden;
 }

 .footer-branch-card-prime::before {
     content: "";
     position: absolute;
     inset: 0;
     background: linear-gradient(135deg, rgba(0, 152, 218, 0.10) 0%, transparent 60%);
     opacity: 0;
     transition: opacity 0.4s ease;
     pointer-events: none;
 }

 .footer-branch-card-prime::after {
     content: "";
     position: absolute;
     top: 0;
     left: 0;
     width: 4px;
     height: 100%;
     background: linear-gradient(180deg, #0098da 0%, transparent 100%);
     opacity: 0;
     transition: opacity 0.4s ease;
 }

 .footer-branch-card-prime:hover {
     background: rgba(0, 152, 218, 0.07);
     border-color: rgba(0, 152, 218, 0.35);
     transform: translateY(-4px);
     box-shadow: 0 10px 30px rgba(0, 152, 218, 0.20);
 }

 .footer-branch-card-prime:hover::before {
     opacity: 1;
 }

 .footer-branch-card-prime:hover::after {
     opacity: 1;
 }

 /* Şube kart üst kısmı (ikon + başlık) */
 .footer-branch-card-header {
     display: flex;
     align-items: center;
     gap: 12px;
     margin-bottom: 14px;
     position: relative;
     z-index: 1;
 }

 .footer-branch-card-icon {
     flex-shrink: 0;
     width: 40px;
     height: 40px;
     border-radius: 50%;
     background: rgba(0, 152, 218, 0.18);
     border: 1px solid rgba(0, 152, 218, 0.4);
     display: flex;
     align-items: center;
     justify-content: center;
     transition: all 0.4s ease;
 }

 .footer-branch-card-prime:hover .footer-branch-card-icon {
     background: #0098da;
     border-color: #0098da;
     transform: rotate(-8deg) scale(1.08);
     box-shadow: 0 0 0 6px rgba(0, 152, 218, 0.18);
 }

 .footer-branch-card-icon i {
     color: #0098da;
     font-size: 15px;
     transition: color 0.4s ease;
 }

 .footer-branch-card-prime:hover .footer-branch-card-icon i {
     color: #ffffff;
 }

 .footer-branch-card-header strong {
     color: #0098da;
     font-size: 15px;
     font-weight: 600;
     letter-spacing: 0.3px;
 }

 /* Şube içeriği */
 .footer-branch-card-content {
     position: relative;
     z-index: 1;
 }

 .footer-branch-card-content p {
     color: rgba(255, 255, 255, 0.78);
     font-size: 14px;
     line-height: 1.6;
     margin: 0 0 16px 0;
 }

 /* Kart alt aksiyon barı (telefon + harita) */
 .footer-branch-card-footer {
     display: flex;
     flex-wrap: wrap;
     align-items: center;
     gap: 10px 14px;
     padding-top: 14px;
     border-top: 1px solid rgba(255, 255, 255, 0.08);
 }

 .footer-branch-phone-link {
     display: inline-flex;
     align-items: center;
     gap: 7px;
     font-size: 13.5px;
     font-weight: 500;
     color: rgba(255, 255, 255, 0.85);
     text-decoration: none;
     transition: color 0.35s ease;
 }

 .footer-branch-phone-link i {
     font-size: 12px;
     color: #0098da;
 }

 .footer-branch-phone-link:hover {
     color: #0098da;
 }

 /* Haritada aç linki */
 .footer-branch-map-link {
     display: inline-flex;
     align-items: center;
     gap: 6px;
     font-size: 12.5px;
     font-weight: 500;
     color: #0098da;
     text-decoration: none;
     padding: 6px 14px;
     border: 1px solid rgba(0, 152, 218, 0.4);
     border-radius: 50px;
     transition: all 0.35s ease;
     margin-left: auto;
 }

 .footer-branch-map-link i {
     font-size: 10px;
     transition: transform 0.35s ease;
 }

 .footer-branch-map-link:hover {
     background: #0098da;
     color: #ffffff;
     border-color: #0098da;
     transform: translateX(2px);
 }

 .footer-branch-map-link:hover i {
     transform: translate(2px, -2px);
 }

 /* === SOSYAL MEDYA HOVER === */
 .footer-social-links-prime ul li a {
     transition: all 0.4s cubic-bezier(.2, .7, .3, 1);
 }

 .footer-social-links-prime ul li a:hover {
     background: #0098da !important;
     border-color: #0098da !important;
     color: #ffffff !important;
     transform: translateY(-3px) rotate(-5deg);
     box-shadow: 0 6px 16px rgba(0, 152, 218, 0.4);
 }

 /* === TELEFON LİSTESİ HOVER === */
 .footer-phone-list-prime li a:hover {
     color: #0098da !important;
 }

 /* === RESPONSIVE - ŞUBE KARTI === */
 @media (max-width: 1199px) {
     .footer-branch-card-prime {
         padding: 18px 20px;
         margin-top: 24px;
     }

     .footer-branch-card-icon {
         width: 36px;
         height: 36px;
     }

     .footer-branch-card-header strong {
         font-size: 14px;
     }

     .footer-branch-card-content p {
         font-size: 13.5px;
     }
 }

 @media (max-width: 767px) {
     .footer-logo-glass-prime {
         padding: 18px 22px;
     }

     .footer-logo-glass-prime img {
         max-width: 300px;
     }

     .footer-branch-card-prime {
         padding: 16px 18px;
     }

     .footer-branch-card-footer {
         flex-direction: column;
         align-items: flex-start;
         gap: 10px;
     }

     .footer-branch-map-link {
         margin-left: 0;
     }

     .footer-email-box-prime h3 {
         font-size: 15px;
     }
 }

 /* === E-POSTA KUTUSU (sosyal medya altında) === */
 .footer-email-box-prime {
     margin-top: 28px;
     padding: 18px 20px;
     background: rgba(255, 255, 255, 0.04);
     backdrop-filter: blur(14px);
     -webkit-backdrop-filter: blur(14px);
     border: 1px solid rgba(255, 255, 255, 0.10);
     border-radius: 16px;
     position: relative;
     overflow: hidden;
     transition: all 0.45s cubic-bezier(.2, .7, .3, 1);
     cursor: pointer;
 }

 /* Hoverde sol kenar mavi gradient çizgi - şube kartlarıyla tutarlı */
 .footer-email-box-prime::before {
     content: "";
     position: absolute;
     top: 0;
     left: 0;
     width: 4px;
     height: 100%;
     background: linear-gradient(180deg, #0098da 0%, transparent 100%);
     opacity: 0;
     transition: opacity 0.4s ease;
 }

 /* Hoverde diagonal gradient overlay */
 .footer-email-box-prime::after {
     content: "";
     position: absolute;
     inset: 0;
     background: linear-gradient(135deg, rgba(0, 152, 218, 0.10) 0%, transparent 60%);
     opacity: 0;
     transition: opacity 0.4s ease;
     pointer-events: none;
 }

 .footer-email-box-prime:hover {
     background: rgba(0, 152, 218, 0.07);
     border-color: rgba(0, 152, 218, 0.35);
     transform: translateY(-3px);
     box-shadow: 0 10px 28px rgba(0, 152, 218, 0.18);
 }

 .footer-email-box-prime:hover::before,
 .footer-email-box-prime:hover::after {
     opacity: 1;
 }

 .footer-email-box-prime p {
     color: rgba(255, 255, 255, 0.65);
     font-size: 12px;
     margin-bottom: 8px;
     text-transform: uppercase;
     letter-spacing: 0.8px;
     position: relative;
     z-index: 1;
     display: flex;
     align-items: center;
     gap: 8px;
     transition: color 0.4s ease;
 }

 /* Üst yazıdan önce mail ikonu */
 .footer-email-box-prime p::before {
     content: "\f0e0";
     font-family: "Font Awesome 6 Free";
     font-weight: 900;
     font-size: 13px;
     color: #0098da;
     transition: transform 0.4s ease;
 }

 .footer-email-box-prime:hover p::before {
     transform: scale(1.15) rotate(-8deg);
 }

 .footer-email-box-prime h3 {
     font-size: 16px;
     margin: 0;
     word-break: break-word;
     position: relative;
     z-index: 1;
 }

 .footer-email-box-prime h3 a {
     color: #ffffff;
     transition: color 0.35s ease;
 }

 .footer-email-box-prime:hover h3 a {
     color: #0098da;
 }

 @media (max-width: 767px) {
     .footer-email-box-prime {
         padding: 15px 18px;
     }

     .footer-email-box-prime h3 {
         font-size: 14.5px;
     }
 }

 /* ============================================ */
 /* Hero H1 - Capital Sigorta Marka Vurgusu       */
 /* ============================================ */

 /* "Capital Sigorta" marka stili */
 .brand-highlight-prime {
     position: relative;
     display: inline-block;
     background: linear-gradient(135deg,
             #0098da 0%,
             #4ec3ed 50%,
             #0098da 100%);
     background-size: 200% auto;
     -webkit-background-clip: text;
     -webkit-text-fill-color: transparent;
     background-clip: text;
     color: transparent;
     font-weight: 700;
     letter-spacing: -0.01em;
     animation: brandShimmer 5s ease-in-out infinite;
     padding: 0 2px;
 }

 /* ============================================ */
 /* Hero H1 - Capital Sigorta Marka Vurgusu       */
 /* ============================================ */

 /* Hem "Capital" hem "Sigorta" kelimeleri için ortak gradient */
 .brand-highlight-prime {
     position: relative;
     display: inline-block;
     background: linear-gradient(135deg,
             #0098da 0%,
             #4ec3ed 50%,
             #0098da 100%);
     background-size: 200% auto;
     -webkit-background-clip: text;
     -webkit-text-fill-color: transparent;
     background-clip: text;
     color: transparent;
     font-weight: 700;
     letter-spacing: -0.01em;
     animation: brandShimmer 5s ease-in-out infinite;
     padding: 0 2px;
 }

 /* Sadece "Sigorta" altında çizgi */
 .brand-highlight-accent::after {
     content: "";
     position: absolute;
     left: 2px;
     right: 2px;
     bottom: -4px;
     height: 3px;
     background: linear-gradient(90deg,
             transparent 0%,
             #0098da 30%,
             #0098da 70%,
             transparent 100%);
     border-radius: 2px;
     transform: scaleX(0.85);
     transform-origin: center;
     animation: underlinePulse 3s ease-in-out infinite;
 }

 /* Gradient parlama animasyonu */
 @keyframes brandShimmer {

     0%,
     100% {
         background-position: 0% center;
     }

     50% {
         background-position: 100% center;
     }
 }

 /* Underline yumuşak nabız */
 @keyframes underlinePulse {

     0%,
     100% {
         transform: scaleX(0.85);
         opacity: 0.7;
     }

     50% {
         transform: scaleX(1);
         opacity: 1;
     }
 }

 /* Hover: marka kelimelerine gelince hafif parıltı */
 .hero-prime h1:hover .brand-highlight-prime {
     animation-duration: 1.8s;
     filter: drop-shadow(0 0 12px rgba(0, 152, 218, 0.4));
 }

 .hero-prime h1:hover .brand-highlight-accent::after {
     animation-duration: 1.2s;
 }

 @media (max-width: 767px) {
     .brand-highlight-accent::after {
         height: 2px;
         bottom: -2px;
     }
 }

 /* ============================================ */
 /* Hero H1 - Tipografi optimizasyonu             */
 /* 4 satır → 3 satır, daha kompakt görünüm       */
 /* ============================================ */
 .hero-prime .section-title h1 {
     font-size: 58px !important;
     line-height: 1.05em !important;
     letter-spacing: -0.025em !important;
     max-width: 760px;
 }

 /* Marka kelimelerine extra letter-spacing */
 .hero-prime .section-title h1 .brand-highlight-prime {
     letter-spacing: -0.015em;
 }

 /* Responsive ayarlar */
 @media (max-width: 1399px) {
     .hero-prime .section-title h1 {
         font-size: 52px !important;
         max-width: 680px;
     }
 }

 @media (max-width: 1199px) {
     .hero-prime .section-title h1 {
         font-size: 46px !important;
         max-width: 100%;
     }
 }

 @media (max-width: 991px) {
     .hero-prime .section-title h1 {
         font-size: 40px !important;
         line-height: 1.08em !important;
     }
 }

 @media (max-width: 767px) {
     .hero-prime .section-title h1 {
         font-size: 30px !important;
         line-height: 1.15em !important;
     }
 }


 /* ============================================ */
 /* Hizmet Kartı Font Awesome İkonları            */
 /* ============================================ */

 /* Normal durum: koyu arka plan açık olduğu için ikon koyu */
 .our-services-prime .service-item-prime .icon-box i {
     font-size: 28px;
     color: var(--primary-color);
     transition: all 0.4s ease-in-out;
     line-height: 1;
     position: relative;
     z-index: 2;
 }

 /* Hover: arka plan koyulaşıyor, ikon BEYAZ olmalı */
 .our-services-prime .service-item-prime:hover .icon-box i,
 .our-services-prime .swiper-slide .service-item-prime:hover .icon-box i {
     color: #ffffff !important;
 }


 /* ============================================ */
 /* ============================================ */
 /* Section Sub-Title - Yıldız → Favicon          */
 /* ============================================ */
 .section-title .section-sub-title::before {
     background-image: url('../images/favicon.png') !important;
     background-size: contain !important;
     background-repeat: no-repeat !important;
     background-position: center center !important;
 }
 /* ============================================ */
        /* Hakkımızda - Görsel Düzeltmesi (col-xl-4 için) */
        /* ============================================ */

        /* Görsel kutusu kolon genişliğini doldursun */
        .about-us-stone .about-us-image-box-stone {
            width: 100%;
            max-width: 100%;
        }

        /* Görsel daha yatay/kompakt görünsün, dar gözükmesin */
        .about-us-stone .about-us-image-box-stone .about-us-image-stone {
            width: 100%;
            aspect-ratio: 1 / 1;
            overflow: hidden;
            border-radius: 12px;
        }

        .about-us-stone .about-us-image-box-stone .about-us-image-stone figure,
        .about-us-stone .about-us-image-box-stone .about-us-image-stone figure img {
            width: 100%;
            height: 100%;
            margin: 0;
            object-fit: cover;
            object-position: center center;
            display: block;
        }

        /* Mobilde görsel orantısı korunsun */
        @media (max-width: 991px) {
            .about-us-stone .about-us-image-box-stone .about-us-image-stone {
                aspect-ratio: 16 / 10;
            }
        }

        @media (max-width: 767px) {
            .about-us-stone .about-us-image-box-stone .about-us-image-stone {
                aspect-ratio: 4 / 3;
            }
        }
        /* ============================================ */
/* Hakkımızda Kartları - Font Awesome İkonları   */
/* ============================================ */

/* Normal durum: ikon mavi, hafif glow */
.about-us-stone .about-us-item-stone .icon-box i {
    font-size: 27px;
    color: white;
    line-height: 1;
    transition: all 0.4s cubic-bezier(.2, .7, .3, 1);
    display: inline-block;
}

/* Hover: ikon hafif büyür ve döner */
.about-us-stone .about-us-item-stone:hover .icon-box i {
    color: #ffffff;
    transform: rotate(-8deg) scale(1.1);
}

/* Mobilde ikon biraz küçülsün */
@media (max-width: 767px) {
    .about-us-stone .about-us-item-stone .icon-box i {
        font-size: 28px;
    }
}
/* ============================================ */
/* Entegre İletişim Kutusu - 3 Sütun Tasarım     */
/* ============================================ */

.contact-info-grid-prime {
    margin-bottom: 60px;
    margin-top: 60px;
}

/* Ana kart container */
.contact-info-card-prime {
    background: #ffffff;
    border: 1px solid rgba(0, 152, 218, 0.12);
    border-radius: 16px;
    padding: 32px 28px;
    height: 100%;
    transition: all 0.45s cubic-bezier(.2, .7, .3, 1);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.04);
    position: relative;
    overflow: hidden;
}

.contact-info-card-prime::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: linear-gradient(180deg, #0098da 0%, transparent 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.contact-info-card-prime:hover {
    border-color: rgba(0, 152, 218, 0.3);
    box-shadow: 0 12px 32px rgba(0, 152, 218, 0.12);
    transform: translateY(-4px);
}

.contact-info-card-prime:hover::before {
    opacity: 1;
}

/* Kart başlığı */
.contact-info-card-header {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 24px;
    padding-bottom: 18px;
    border-bottom: 2px solid rgba(0, 152, 218, 0.10);
}

.contact-info-card-icon {
    width: 52px;
    height: 52px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 6px 16px rgba(0, 152, 218, 0.25);
    transition: all 0.4s ease;
}

.contact-info-card-icon i {
    color: #ffffff;
    font-size: 22px;
}

.contact-info-card-prime:hover .contact-info-card-icon {
    transform: rotate(-8deg) scale(1.05);
}

.contact-info-card-header h2 {
    margin: 0;
    font-size: 20px;
    color: #1a1a1a;
    font-weight: 700;
    line-height: 1.2;
}

/* Şube blokları */
.contact-info-branch-prime {
    margin-bottom: 16px;
}

.contact-info-branch-prime strong {
    display: block;
    color: #0098da;
    font-size: 15px;
    font-weight: 700;
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 0.4px;
}

.contact-info-branch-prime p {
    margin: 0 0 4px;
    font-size: 14px;
    line-height: 1.55;
    color: #555;
}

.contact-info-map-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin-top: 10px;
    padding: 7px 14px;
    background: rgba(0, 152, 218, 0.08);
    border: 1px solid rgba(0, 152, 218, 0.25);
    border-radius: 50px;
    color: #0098da;
    font-size: 12.5px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.4s ease;
}

.contact-info-map-link i {
    font-size: 10px;
}

.contact-info-map-link:hover {
    background: #0098da;
    color: #ffffff;
    border-color: #0098da;
    transform: translateX(3px);
}

.contact-info-divider {
    height: 1px;
    background: rgba(0, 152, 218, 0.10);
    margin: 18px 0;
}

/* Telefon listesi */
.contact-info-phone-list-prime {
    list-style: none;
    padding: 0;
    margin: 0;
}

.contact-info-phone-list-prime li {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 0;
    border-bottom: 1px solid rgba(0, 152, 218, 0.08);
    transition: all 0.3s ease;
}

.contact-info-phone-list-prime li:last-child {
    border-bottom: none;
}

.contact-info-phone-list-prime li:hover {
    padding-left: 6px;
}

.contact-info-phone-label {
    font-size: 12px;
    color: #888;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-weight: 600;
    flex-shrink: 0;
    min-width: 70px;
}

.contact-info-phone-list-prime li a {
    color: #1a1a1a;
    font-weight: 600;
    font-size: 15px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: color 0.3s ease;
}

.contact-info-phone-list-prime li a i {
    color: #0098da;
    font-size: 13px;
}

.contact-info-phone-list-prime li a:hover {
    color: #0098da;
}

/* Hızlı kanallar */
.contact-info-channel-prime {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 14px 16px;
    border-radius: 12px;
    text-decoration: none;
    margin-bottom: 12px;
    transition: all 0.4s cubic-bezier(.2, .7, .3, 1);
}

.contact-info-channel-prime i {
    font-size: 28px;
    flex-shrink: 0;
}

.contact-info-channel-prime div {
    display: flex;
    flex-direction: column;
    line-height: 1.3;
}

.contact-info-channel-prime strong {
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 2px;
}

.contact-info-channel-prime span {
    font-size: 13px;
    opacity: 0.9;
}

.contact-info-channel-prime:hover {
    transform: translateX(4px);
}

/* WhatsApp */
.contact-info-whatsapp {
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
    color: #ffffff;
    box-shadow: 0 4px 12px rgba(37, 211, 102, 0.20);
}

.contact-info-whatsapp:hover {
    color: #ffffff;
    box-shadow: 0 8px 20px rgba(37, 211, 102, 0.35);
}

/* E-posta */
.contact-info-email {
    background: linear-gradient(135deg, #0098da 0%, #0073a8 100%);
    color: #ffffff;
    box-shadow: 0 4px 12px rgba(0, 152, 218, 0.20);
}

.contact-info-email:hover {
    color: #ffffff;
    box-shadow: 0 8px 20px rgba(0, 152, 218, 0.35);
}

/* Çalışma saatleri */
.contact-info-hours-prime {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    padding: 14px 16px;
    background: rgba(255, 184, 0, 0.08);
    border: 1px solid rgba(255, 184, 0, 0.25);
    border-radius: 12px;
    margin-top: 4px;
}

.contact-info-hours-prime i {
    color: #ff9500;
    font-size: 22px;
    margin-top: 4px;
    flex-shrink: 0;
}

.contact-info-hours-prime div {
    display: flex;
    flex-direction: column;
    line-height: 1.5;
}

.contact-info-hours-prime strong {
    color: #1a1a1a;
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 4px;
}

.contact-info-hours-prime span {
    color: #555;
    font-size: 13px;
}

/* Responsive */
@media (max-width: 991px) {
    .contact-info-card-prime {
        padding: 26px 22px;
    }

    .contact-info-card-icon {
        width: 46px;
        height: 46px;
    }

    .contact-info-card-icon i {
        font-size: 18px;
    }

    .contact-info-card-header h2 {
        font-size: 18px;
    }
}

@media (max-width: 767px) {
    .contact-info-card-prime {
        padding: 22px 18px;
    }

    .contact-info-phone-list-prime li {
        flex-direction: column;
        align-items: flex-start;
        gap: 4px;
    }

    .contact-info-phone-label {
        min-width: auto;
    }

    .contact-info-channel-prime {
        padding: 12px 14px;
    }

    .contact-info-channel-prime i {
        font-size: 24px;
    }
}
/* ============================================ */
/* Hayat Sigortası Sayfası - Font Awesome İkonlar */
/* ============================================ */

/* Sidebar CTA ikonu - büyük headset */
.sidebar-cta-box .icon-box i {
    font-size: 38px !important;
    color: #ffffff !important;
    line-height: 1 !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    transition: all 0.4s cubic-bezier(.2, .7, .3, 1);
}

.sidebar-cta-box:hover .icon-box i {
    color: #ffffff !important;
    transform: rotate(-8deg) scale(1.1);
}

/* Why Choose ana ikonu - kalkan */
.service-why-choose-item .icon-box i {
    font-size: 32px !important;
    color: #ffffff !important;
    line-height: 1 !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    transition: all 0.4s cubic-bezier(.2, .7, .3, 1);
}

.service-why-choose-item:hover .icon-box i {
    color: #ffffff !important;
    transform: rotate(-8deg) scale(1.1);
}

/* Why Choose küçük ikonlar - para + danışman */
.service-why-choose-info-item .icon-box i {
    font-size: 24px !important;
    color: #ffffff !important;
    line-height: 1 !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    transition: all 0.4s cubic-bezier(.2, .7, .3, 1);
}

.service-why-choose-info-item:hover .icon-box i {
    color: #ffffff !important;
    transform: rotate(-8deg) scale(1.1);
}

/* Service Benefits ikonları - şimşek + belge + saat */
.service-benefits-item .icon-box i {
    font-size: 32px !important;
    color: #ffffff !important;
    line-height: 1 !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    transition: all 0.4s cubic-bezier(.2, .7, .3, 1);
}

.service-benefits-item:hover .icon-box i {
    color: #ffffff !important;
    transform: rotate(-8deg) scale(1.1);
}

/* Mobilde ikon biraz küçülsün */
@media (max-width: 767px) {
    .sidebar-cta-box .icon-box i {
        font-size: 32px !important;
    }
    
    .service-why-choose-item .icon-box i,
    .service-benefits-item .icon-box i {
        font-size: 28px !important;
    }
    
    .service-why-choose-info-item .icon-box i {
        font-size: 22px !important;
    }
}
/* ============================================ */
/* HİZMETLERİMİZ - INTRO BÖLÜMÜ TASARIM        */
/* ============================================ */

.services-intro-prime {
    position: relative;
    max-width: 1100px;
    margin: 0 auto 70px;
    padding: 50px 50px 45px;
    background: linear-gradient(135deg, rgba(0, 152, 218, 0.06) 0%, rgba(255, 255, 255, 0.95) 100%);
    border: 1px solid rgba(0, 152, 218, 0.15);
    border-radius: 24px;
    overflow: hidden;
    backdrop-filter: blur(10px) saturate(140%);
    -webkit-backdrop-filter: blur(10px) saturate(140%);
    box-shadow: 0 8px 32px rgba(0, 152, 218, 0.08);
}

/* Dekoratif arka plan şekilleri */
.services-intro-bg-shape {
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
    z-index: 0;
}

.services-intro-bg-shape-1 {
    width: 280px;
    height: 280px;
    top: -100px;
    right: -100px;
    background: radial-gradient(circle, rgba(0, 152, 218, 0.18) 0%, rgba(0, 152, 218, 0) 70%);
}

.services-intro-bg-shape-2 {
    width: 220px;
    height: 220px;
    bottom: -80px;
    left: -80px;
    background: radial-gradient(circle, rgba(0, 152, 218, 0.12) 0%, rgba(0, 152, 218, 0) 70%);
}

/* Üst rozet */
.services-intro-badge {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 8px 18px;
    background: rgba(0, 152, 218, 0.1);
    border: 1px solid rgba(0, 152, 218, 0.25);
    border-radius: 50px;
    margin-bottom: 22px;
    z-index: 1;
}

.services-intro-badge i {
    color: #0098da;
    font-size: 14px;
}

.services-intro-badge span {
    color: #0098da;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

/* Ana başlık */
.services-intro-headline {
    position: relative;
    font-size: 36px;
    font-weight: 700;
    line-height: 1.25;
    color: #1a1a1a;
    margin: 0 0 22px;
    z-index: 1;
}

.services-intro-headline-accent {
    background: linear-gradient(135deg, #0098da 0%, #00bce0 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
    position: relative;
    display: inline-block;
}

.services-intro-headline-accent::after {
    content: '';
    position: absolute;
    bottom: 4px;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #0098da 0%, #00bce0 100%);
    border-radius: 2px;
    opacity: 0.4;
}

/* Ana paragraf */
.services-intro-paragraph {
    position: relative;
    font-size: 16px;
    line-height: 1.8;
    color: #555;
    margin: 0 0 40px;
    z-index: 1;
}

.services-intro-paragraph strong {
    color: #0098da;
    font-weight: 600;
}

/* İstatistik kartları */
.services-intro-stats {
    position: relative;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
    margin: 0 0 38px;
    z-index: 1;
}

.services-intro-stat-card {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 18px 16px;
    background: rgba(255, 255, 255, 0.7);
    border: 1px solid rgba(0, 152, 218, 0.12);
    border-radius: 16px;
    transition: all 0.4s cubic-bezier(.2, .7, .3, 1);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}

.services-intro-stat-card:hover {
    transform: translateY(-4px);
    background: rgba(255, 255, 255, 0.95);
    border-color: rgba(0, 152, 218, 0.35);
    box-shadow: 0 10px 25px rgba(0, 152, 218, 0.12);
}

.services-intro-stat-icon {
    flex-shrink: 0;
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #0098da 0%, #0073a8 100%);
    border-radius: 12px;
    color: #fff;
    font-size: 18px;
    box-shadow: 0 4px 12px rgba(0, 152, 218, 0.25);
    transition: all 0.4s cubic-bezier(.2, .7, .3, 1);
}

.services-intro-stat-card:hover .services-intro-stat-icon {
    transform: rotate(-8deg) scale(1.05);
    box-shadow: 0 6px 18px rgba(0, 152, 218, 0.4);
}

.services-intro-stat-content {
    flex: 1;
    min-width: 0;
}

.services-intro-stat-number {
    font-size: 22px;
    font-weight: 800;
    color: #0098da;
    line-height: 1;
    margin-bottom: 4px;
    letter-spacing: -0.5px;
}

.services-intro-stat-label {
    font-size: 12px;
    color: #555;
    line-height: 1.35;
    font-weight: 500;
}

/* CTA Butonları */
.services-intro-cta {
    position: relative;
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    justify-content: center;
    z-index: 1;
}

.services-intro-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 30px;
    border-radius: 50px;
    font-size: 15px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.4s cubic-bezier(.2, .7, .3, 1);
    border: 2px solid transparent;
    letter-spacing: 0.3px;
}

.services-intro-btn i {
    font-size: 16px;
}

.services-intro-btn-primary {
    background: linear-gradient(135deg, #0098da 0%, #0073a8 100%);
    color: #fff;
    box-shadow: 0 6px 20px rgba(0, 152, 218, 0.3);
}

.services-intro-btn-primary:hover {
    transform: translateY(-3px);
    color: #fff;
    box-shadow: 0 10px 28px rgba(0, 152, 218, 0.45);
    background: linear-gradient(135deg, #00abf0 0%, #0080bd 100%);
}

.services-intro-btn-whatsapp {
    background: #25D366;
    color: #fff;
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.3);
}

.services-intro-btn-whatsapp:hover {
    transform: translateY(-3px);
    color: #fff;
    background: #1ebe5a;
    box-shadow: 0 10px 28px rgba(37, 211, 102, 0.45);
}

/* ============================================ */
/* RESPONSIVE - TABLET                          */
/* ============================================ */
@media (max-width: 991px) {
    .services-intro-prime {
        padding: 40px 32px 36px;
        margin-bottom: 50px;
    }

    .services-intro-headline {
        font-size: 30px;
    }

    .services-intro-stats {
        grid-template-columns: repeat(2, 1fr);
        gap: 14px;
    }
}

/* ============================================ */
/* RESPONSIVE - MOBİL                           */
/* ============================================ */
@media (max-width: 575px) {
    .services-intro-prime {
        padding: 32px 22px 28px;
        margin-bottom: 40px;
        border-radius: 18px;
    }

    .services-intro-bg-shape-1 {
        width: 200px;
        height: 200px;
        top: -80px;
        right: -80px;
    }

    .services-intro-bg-shape-2 {
        width: 160px;
        height: 160px;
        bottom: -60px;
        left: -60px;
    }

    .services-intro-badge {
        padding: 7px 14px;
        margin-bottom: 18px;
    }

    .services-intro-badge span {
        font-size: 11px;
    }

    .services-intro-headline {
        font-size: 24px;
        margin-bottom: 18px;
    }

    .services-intro-paragraph {
        font-size: 14.5px;
        line-height: 1.75;
        margin-bottom: 28px;
    }

    .services-intro-stats {
        grid-template-columns: 1fr;
        gap: 12px;
        margin-bottom: 28px;
    }

    .services-intro-stat-card {
        padding: 14px 14px;
    }

    .services-intro-stat-icon {
        width: 40px;
        height: 40px;
        font-size: 16px;
    }

    .services-intro-stat-number {
        font-size: 20px;
    }

    .services-intro-stat-label {
        font-size: 11.5px;
    }

    .services-intro-cta {
        flex-direction: column;
    }

    .services-intro-btn {
        width: 100%;
        justify-content: center;
        padding: 13px 24px;
        font-size: 14.5px;
    }
}




.contact-pop-box {
    position: fixed;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 24px;
    background: rgba(8, 16, 15, 0.72);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    z-index: 99998;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.45s ease, visibility 0.45s ease;
 }

 .contact-pop-box.show {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
 }

 .contact-pop-dialog {
    position: relative;
    width: min(100%, 620px);
    padding: 38px 36px 30px;
    border-radius: 26px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    background: linear-gradient(145deg, rgba(0, 0, 0, 0.97) 0%, #0078b7 55%, #00aeef 100%);

    box-shadow:
       0 30px 80px rgba(0, 0, 0, 0.35),
       inset 0 1px 0 rgba(255, 255, 255, 0.05);
    color: #ffffff;
    overflow: hidden;
    transform: translateY(30px) scale(0.96);
    opacity: 0;
    transition:
       transform 0.5s cubic-bezier(0.22, 0.61, 0.36, 1),
       opacity 0.4s ease;
 }

 .contact-pop-dialog::before {
    content: "";
    position: absolute;
    top: -80px;
    right: -80px;
    width: 240px;
    height: 240px;
    border-radius: 50%;
    background: radial-gradient(
       circle,
       rgba(177, 129, 74, 0.22) 0%,
       rgba(177, 129, 74, 0) 72%
    );
    pointer-events: none;
 }

 .contact-pop-dialog::after {
    content: "";
    position: absolute;
    left: -100px;
    bottom: -100px;
    width: 260px;
    height: 260px;
    border-radius: 50%;
    background: radial-gradient(
       circle,
       rgba(255, 255, 255, 0.06) 0%,
       rgba(255, 255, 255, 0) 72%
    );
    pointer-events: none;
 }

 .contact-pop-box.show .contact-pop-dialog {
    transform: translateY(0) scale(1);
    opacity: 1;
 }

 .contactPopClose {
    position: absolute;
    top: 14px;
    right: 14px;
    width: 44px;
    height: 44px;
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.06);
    color: #ffffff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
 }

 .contactPopClose:hover {
    background: #038bcb;
    border-color: #038bcb;
    color: #ffffff;
    transform: rotate(90deg);
 }

 .contact-pop-head {
    position: relative;
    z-index: 1;
    margin-bottom: 24px;
 }

 .contact-pop-kicker {
    display: inline-block;
    margin-bottom: 10px;
    color: #ffffff;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
 }

 .contact-pop-head h3 {
    margin: 0 0 10px;
    color: #ffffff;
    font-size: clamp(24px, 2.2vw, 34px);
    line-height: 1.18;
    font-weight: 700;
    letter-spacing: -0.02em;
 }

 .contact-pop-head p {
    margin: 0;
    color: rgba(255, 255, 255, 0.78);
    font-size: 15px;
    line-height: 1.7;
 }

 .contact-pop-form {
    position: relative;
    z-index: 1;
    margin-top: 6px;
 }

 .contact-pop-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
    margin-bottom: 18px;
 }

 .contact-pop-form .form-group {
    margin: 0;
 }

 .contact-pop-form .form-group.full {
    grid-column: 1 / -1;
 }

 .contact-pop-form .form-control {
    width: 100%;
    height: 54px;
    border-radius: 14px;
    border: 1px solid rgba(255, 255, 255, 0.14);
    background: rgba(255, 255, 255, 0.08);
    color: #ffffff;
    padding: 12px 16px;
    outline: none;
    transition: all 0.3s ease;
 }

 .contact-pop-form .form-control:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(177, 129, 74, 0.4);
 }

 .contact-pop-form .form-control:focus {
    border-color: #b1814a;
    background: rgba(255, 255, 255, 0.12);
    box-shadow: 0 0 0 4px rgba(177, 129, 74, 0.18);
 }

 .contact-pop-form .form-control::placeholder {
    color: rgba(255, 255, 255, 0.62);
 }

 .contact-pop-form textarea.form-control {
    min-height: 120px;
    height: auto;
    resize: vertical;
    padding-top: 14px;
 }

 .contact-pop-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 18px;
 }

 .contact-pop-actions .th-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    min-width: 185px;
    padding: 14px 28px;
    font-size: 15px;
    font-weight: 600;
    text-decoration: none;
    border: none;
    cursor: pointer;
    font-family: inherit;
    line-height: 1.2;
    border-radius: 999px;
    transition: all 0.3s ease;
 }

 .contact-pop-actions .th-btn.style7 {
  background: #244b8a;
border: 1px solid #038bcb;
color: #ffffff;
 }

 .contact-pop-actions .th-btn.style7:hover {
    background: #038bcb;
    border-color: #038bcb;
    transform: translateY(-2px);
    box-shadow: 0 10px 24px rgba(177, 129, 74, 0.28);
 }

 .contact-pop-actions .th-btn.style2 {
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.18);
    color: #ffffff;
 }

 .contact-pop-actions .th-btn.style2:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: #ffffff;
    color: #ffffff;
    transform: translateY(-2px);
 }

 .contact-pop-form .form-messages {
    margin: 0;
    color: rgba(255, 255, 255, 0.9);
    font-size: 14px;
 }

 .contact-pop-link {
    position: relative;
    z-index: 1;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 15px;
    font-weight: 600;
    color: #ffffff;
    opacity: 0.92;
    transition: all 0.3s ease;
    text-decoration: none;
 }

 .contact-pop-link:hover {
    color: #d9b183;
    transform: translateX(4px);
 }

 @media (max-width: 767px) {
    .contact-pop-box {
       padding: 16px;
    }

    .contact-pop-dialog {
       width: 100%;
       padding: 24px 20px 20px;
       border-radius: 18px;
    }

    .contact-pop-grid {
       grid-template-columns: 1fr;
       gap: 12px;
    }

    .contact-pop-actions {
       flex-direction: column;
    }

    .contact-pop-actions .th-btn {
       width: 100%;
       min-width: 100%;
    }

    .contactPopClose {
       width: 40px;
       height: 40px;
       top: 12px;
       right: 12px;
    }

    .contact-pop-head h3 {
       padding-right: 40px;
    }
 }
 /* ============================================ */
/* FOOTER - ŞUBE KARTLARI SAĞA KAYDIRMA         */
/* ============================================ */

@media (min-width: 992px) {
    /* Tüm şube kartları için ortak ayarlar */
    .footer-branch-card-prime {
        position: relative !important;
        max-width: none !important;
        z-index: 2 !important;
    }

    /* 1. Şube → SAĞA kayar (öncekiyle aynı, dokunmuyoruz) */
    .footer-quick-links-prime .footer-branch-card-prime {
        width: calc(100% + 60px) !important;
        margin-left: 0 !important;
        margin-right: -60px !important;
    }

    /* 2. Şube → SOLDAN boşluk + sağa taşma (1. şubeden uzakta dursun) */
    .footer-service-links-prime .footer-branch-card-prime {
        width: calc(100% + 60px) !important;
        margin-left: 40px !important;
        margin-right: -60px !important;
    }

    /* İçerideki yazılar */
    .footer-branch-card-content p {
        font-size: 14.5px !important;
        line-height: 1.65 !important;
    }

    .footer-branch-card-footer {
        flex-wrap: wrap !important;
        gap: 10px !important;
    }

    .footer-branch-phone-link,
    .footer-branch-map-link {
        font-size: 13.5px !important;
        white-space: nowrap !important;
    }
}

/* Büyük ekranlarda daha çok genişlesin */
@media (min-width: 1200px) {
    .footer-quick-links-prime .footer-branch-card-prime {
        width: calc(100% + 90px) !important;
        margin-right: -90px !important;
    }

    .footer-service-links-prime .footer-branch-card-prime {
        width: calc(100% + 90px) !important;
        margin-left: 60px !important;
        margin-right: -90px !important;
    }

    .footer-branch-card-content p {
        font-size: 15px !important;
    }
}

/* 4K / Ultra-wide */
@media (min-width: 1400px) {
    .footer-quick-links-prime .footer-branch-card-prime {
        width: calc(100% + 120px) !important;
        margin-right: -120px !important;
    }

    .footer-service-links-prime .footer-branch-card-prime {
        width: calc(100% + 120px) !important;
        margin-left: 125px !important;
        margin-right: -120px !important;
    }
}

/* Mobil korunur */
.footer-branch-card-prime{
    margin-top: 75px;
}
/* ============================================ */
/* FOOTER COPYRIGHT - YENİDEN TASARIM           */
/* ============================================ */

.footer-copyright-redesigned {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 16px;
    padding: 18px 0;
}

/* Sol: Telif Hakkı Metni */
.footer-copyright-redesigned .footer-copyright-text-prime {
    text-align: left !important;
    margin: 0 !important;
}

.footer-copyright-redesigned .footer-copyright-text-prime p {
    margin: 0 !important;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
    letter-spacing: 0.3px;
}

/* Capital Sigorta - Hover Efektli Link */
.footer-copyright-brand-link {
    color: rgba(255, 255, 255, 0.85);
    text-decoration: none;
    font-weight: 600;
    position: relative;
    display: inline-block;
    transition: all 0.4s cubic-bezier(.2, .7, .3, 1);
}

.footer-copyright-brand-link::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -2px;
    width: 0;
    height: 1.5px;
    background: linear-gradient(90deg, #0098da 0%, #00bce0 100%);
    transition: width 0.4s cubic-bezier(.2, .7, .3, 1);
}

.footer-copyright-brand-link:hover {
    color: #00bce0;
    text-decoration: none;
}

.footer-copyright-brand-link:hover::after {
    width: 100%;
}

/* Sağ: Web Tasarım Kredisi */
.footer-webdesign-credit {
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer-webdesign-label {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.6);
    letter-spacing: 0.3px;
    font-weight: 400;
}

.footer-webdesign-logo-link {
    display: inline-flex;
    align-items: center;
    padding: 4px 10px;
    border-radius: 6px;
    transition: all 0.4s cubic-bezier(.2, .7, .3, 1);
    position: relative;
    overflow: hidden;
}

.footer-webdesign-logo-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0, 152, 218, 0.15) 0%, rgba(0, 188, 224, 0.1) 100%);
    border-radius: 6px;
    opacity: 0;
    transition: opacity 0.4s cubic-bezier(.2, .7, .3, 1);
    z-index: 0;
}

.footer-webdesign-logo {
    height: 24px;
    width: auto;
    filter: brightness(0) invert(1) opacity(0.75);
    transition: all 0.4s cubic-bezier(.2, .7, .3, 1);
    position: relative;
    z-index: 1;
}

.footer-webdesign-logo-link:hover {
    transform: translateY(-2px);
}

.footer-webdesign-logo-link:hover::before {
    opacity: 1;
}

.footer-webdesign-logo-link:hover .footer-webdesign-logo {
    filter: brightness(0) invert(1) opacity(1);
    transform: scale(1.05);
}

/* ============================================ */
/* RESPONSIVE - MOBİL                           */
/* ============================================ */
@media (max-width: 575px) {
    .footer-copyright-redesigned {
        flex-direction: column;
        text-align: center;
        gap: 12px;
        padding: 16px 0;
    }

    .footer-copyright-redesigned .footer-copyright-text-prime {
        text-align: center !important;
    }

    .footer-copyright-redesigned .footer-copyright-text-prime p {
        font-size: 13px;
    }

    .footer-webdesign-label {
        font-size: 12px;
    }

    .footer-webdesign-logo {
        height: 22px;
    }
}
 