/*
 * Valego Theme Override
 * Logo rengi: #e50000 (kırmızı), #1a1a1a (siyah)
 * Mor/lacivert tonları → kırmızı tonlarına dönüştürüldü
 * Font: Exo 2 (başlıklar), Montserrat (metin)
 */

/* =============================================
   0. FONT FAMILY
   ============================================= */

body {
  font-family: 'Poppins', sans-serif;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
}

/* =============================================
   1. RENK PALETİ — Mor/lacivert → Kırmızı
   ============================================= */

/* Ana metin rengi: koyu gri */
body {
  color: #3a3a3a;
}

/* Başlık rengi: koyu siyah */
h1, h2, h3, h4, h5, h6 {
  color: #1a1a1a;
}
h1 a, h2 a, h3 a, h4 a, h5 a, h6 a {
  color: #1a1a1a;
}
h1 a:hover, h2 a:hover, h3 a:hover, h4 a:hover, h5 a:hover, h6 a:hover {
  color: #e50000;
}

/* Bağlantı rengi */
p a, p a:hover {
  color: #e50000;
}

/* input/select rengi */
input, button, select {
  color: #3a3a3a;
}

/* cl-black override */
.cl-black {
  color: #3a3a3a;
}
.cl-black h1, .cl-black h2, .cl-black h3, .cl-black h4, .cl-black h5 {
  color: #1a1a1a;
}

/* theme-bg */
.theme-bg {
  background: #e50000;
}

/* theme-six */
.theme-six {
  background: #c0392b;
}

/* section-header cate rengi */
.section-header .cate {
  color: #e50000;
}

/* section-header p i */
.section-header p i {
  color: #e50000;
}

/* =============================================
   2. HEADER / NAVBAR
   ============================================= */

/* Logo boyutu — daha büyük ve hizalı */
.header-section .header-wrapper .logo {
  width: 160px;
}

/* Navbar menü linkleri */
@media (min-width: 992px) {
  .header-section .header-wrapper .menu li a {
    color: #1a1a1a;
    font-weight: 600;
  }
  .header-section .header-wrapper .menu li a:hover,
  .header-section .header-wrapper .menu li a.active {
    color: #e50000;
  }
  /* Submenu arka planı */
  .header-section .header-wrapper .menu li .submenu {
    background: #1a1a1a;
  }
}

/* Mobil menü linkleri */
.header-section .header-wrapper .menu li a {
  color: #1a1a1a;
}

/* Header bar (hamburger) */
.header-section.header-cl-black .header-wrapper .header-bar span,
.header-section.header-white-dark .header-wrapper .header-bar span,
.header-section.header-white-dark.active .header-wrapper .header-bar span {
  background: #1a1a1a;
}

/* Header button (Giriş Yap) */
@media (min-width: 576px) {
  .header-section.header-cl-black .header-wrapper .header-button {
    color: #ffffff;
    border-color: #e50000;
    background: #e50000;
  }
  .header-section.header-cl-black .header-wrapper .header-button:hover {
    color: #e50000 !important;
    border-color: #e50000;
    background: transparent;
  }
}
  }
  .header-section.header-white-dark.active .header-wrapper .header-button {
    color: #e50000;
    border-color: #e50000;
  }
}
.header-section .header-wrapper .header-button:hover {
  background: #e50000;
  border-color: #e50000;
  color: #ffffff;
}

/* select-bar */
.header-section.header-cl-black .header-wrapper .select-bar .current,
.header-section.header-white-dark.active .header-wrapper .select-bar .current {
  color: #1a1a1a;
}

/* =============================================
   3. BANNER — Telefon taşma düzeltmesi
   ============================================= */

/* Banner container overflow fix */
.banner-20 {
  overflow: hidden;
}

/* Telefon görseli — container sınırını aşmasın */
.banner-thumb-20 {
  position: relative;
  max-width: 100%;
}

.banner-thumb-20 img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* Desktop'ta telefon boyutunu sınırla */
@media (min-width: 992px) {
  .banner-thumb-20 {
    max-width: 480px;
    margin-left: auto;
    margin-right: auto;
  }
  .banner-thumb-20 img {
    max-height: 600px;
    width: auto;
    max-width: 100%;
  }
}

@media (min-width: 1200px) {
  .banner-thumb-20 {
    max-width: 520px;
  }
  .banner-thumb-20 img {
    max-height: 650px;
  }
}

/* Banner video button — mor → kırmızı */
.banner-thumb-20 .video-button {
  background: linear-gradient(-45deg, #e50000 0%, #c0392b 100%);
}
.banner-thumb-20 .video-button::after,
.banner-thumb-20 .video-button::before {
  background: linear-gradient(-65deg, #e50000 0%, #c0392b 100%);
}

/* Banner başlık rengi */
.banner-content-20 .title {
  color: #1a1a1a;
}

/* =============================================
   4. BUTONLAR
   ============================================= */

/* button-4 — ana buton */
.button-4 {
  background: linear-gradient(135deg, #e50000 0%, #c0392b 100%);
  color: #ffffff !important;
  border: none;
}
.button-4:hover {
  background: linear-gradient(135deg, #c0392b 0%, #a93226 100%);
  color: #ffffff !important;
}

/* transparent-button */
.transparent-button {
  color: #e50000;
  border-color: #e50000;
}
.transparent-button:hover {
  background: #e50000;
  color: #ffffff;
}

/* header-button */
.header-button {
  border: 2px solid #e50000;
  color: #e50000;
  border-radius: 30px;
  padding: 8px 28px;
}
.header-button:hover {
  background: #e50000;
  color: #ffffff !important;
}

/* scrollToTop */
.scrollToTop {
  background: #e50000;
}
.scrollToTop:hover {
  background: #c0392b;
}

/* =============================================
   5. FEATURE SECTION — Özellikler
   ============================================= */

/* Feature wrapper arka planı */
.feature-wrapper-bg-20 {
  background: linear-gradient(135deg, #1a1a1a 0%, #3a0000 50%, #e50000 100%);
  border-radius: 20px;
}

/* Feature nav butonları */
.feature-content-20 .feat-nav a:hover,
.feature-content-20 .feat-nav a.active {
  background: linear-gradient(-103deg, #e50000 0%, #c0392b 35%, #a93226 76%, #922b21 100%);
}

/* feat-nav genel */
.feat-nav a {
  background: rgba(255, 255, 255, 0.2);
  color: #ffffff;
  border-radius: 50%;
  width: 44px;
  height: 44px;
  line-height: 44px;
  text-align: center;
  margin-right: 10px;
}
.feat-nav a:hover,
.feat-nav a.active {
  background: #e50000;
  color: #ffffff;
}

/* =============================================
   6. HOW SECTION — Nasıl Çalışır
   ============================================= */

/* How section arka plan */
.how-section-20 {
  background: #fff8f8;
}

/* =============================================
   7. PRICING — Fiyatlandırma
   ============================================= */

/* Pricing section arka plan */
.pricing-section-20 {
  background: #f9f0f0;
}

/* Pricing menu tab */
.pricing-menu.cl-black li {
  color: #3a3a3a;
}
.pricing-menu.cl-black li::before {
  background: linear-gradient(24deg, #e50000 0%, #c0392b 100%);
}
.pricing-menu li.active,
.pricing-menu li:hover {
  color: #e50000;
}

/* Pricing kartları — 1. ve 3. kart renkleri */
div[class*=col]:nth-of-type(3n + 1) .pricing-item-20 {
  background: linear-gradient(0deg, #e50000 0%, #ff6b6b 100%);
}
div[class*=col]:nth-of-type(3n + 2) .pricing-item-20 {
  background: linear-gradient(0deg, #c0392b 0%, #e74c3c 100%);
}
div[class*=col]:nth-of-type(3n + 3) .pricing-item-20 {
  background: linear-gradient(0deg, #922b21 0%, #c0392b 100%);
}
div[class*=col]:nth-of-type(4n + 4) .pricing-item-20 {
  background: linear-gradient(0deg, #7b241c 0%, #a93226 100%);
}

/* Pricing body liste rengi */
.pricing-item-20 .pricing-body ul li {
  color: #1a1a1a;
}

/* Pricing body dotted border */
.pricing-item-20 .pricing-body ul li:not(:last-child) {
  border-bottom: 2px dotted #f5c6c6;
}

/* =============================================
   8. APPS SCREENSHOT (Hakkımızda)
   ============================================= */

/* Screenshot section arka plan */
.apps-screenshot-section-20 {
  background: #fff5f5;
}

/* Screenshot background blob rengi */
.app-screenshot-20 img {
  filter: hue-rotate(200deg) saturate(1.5);
  opacity: 0.15;
}

/* Download options butonları */
.download-options li a {
  background: #e50000;
  border-color: #e50000;
  color: #ffffff;
}
.download-options li a:hover,
.download-options li a.active {
  background: #c0392b;
  border-color: #c0392b;
}

/* =============================================
   9. SSS / FAQ
   ============================================= */

/* FAQ section arka plan */
.testimonial-section {
  background: #f9f0f0 !important;
}

/* FAQ item aktif başlık */
.faq--item.active .faq-title h5,
.faq--item.open .faq-title h5 {
  color: #e50000;
}

/* FAQ icon */
.faq--item .faq-title .icon::before,
.faq--item .faq-title .icon::after {
  background: #e50000;
}

/* faq-header link */
.faq-header a {
  color: #e50000;
}

/* =============================================
   10. APPS DOWNLOAD SECTION
   ============================================= */

/* Download section arka plan */
.apps-download-section {
  background: #fff5f5 !important;
}

/* =============================================
   11. FOOTER
   ============================================= */

/* Footer arka plan */
.footer-section {
  background: #1a1a1a;
}

/* Footer link hover */
.footer-link li a:hover {
  color: #e50000;
}

/* Social icons */
.social-icons li a {
  border-color: #e50000;
  color: #ffffff;
}
.social-icons li a.active,
.social-icons li a:hover {
  background: #e50000;
  border-color: #e50000;
}

/* =============================================
   12. LOGO SLIDER
   ============================================= */

.logo-slider-section {
  background: #ffffff;
}

/* =============================================
   13. GENEL GÖRSEL BOYUTLARI — Büyük fotoğraflar
   ============================================= */

/* Feature section telefon görseli */
.feature-thumb-20 img {
  max-height: 500px;
  width: auto;
  max-width: 100%;
}

/* How section slider telefon görselleri */
.how-slider-20 .thumbs img,
.how-slider-20 img {
  max-height: 480px;
  width: auto;
  max-width: 100%;
  margin: 0 auto;
  display: block;
}

/* App screenshot slider görselleri */
.app-screenshot-slider-20 .thumbs img,
.app-screenshot-slider-20 img {
  max-height: 420px;
  width: auto;
  max-width: 100%;
  margin: 0 auto;
  display: block;
}

/* Apps download section görseli */
.apps-download-screen-20 img,
.apps-download-thumb img {
  max-height: 400px;
  width: auto;
  max-width: 100%;
}

/* Logo slider görselleri */
.logo-slider .item img {
  max-height: 60px;
  width: auto;
  max-width: 100%;
  object-fit: contain;
}

/* =============================================
   14. COUNTER / HISTORY — Mor çizgiler → Kırmızı
   ============================================= */

.history-item .history-content::before,
.history-item .history-content::after {
  background: #e50000;
}

@media (max-width: 991px) {
  .counter-section {
    background-color: #c0392b;
  }
}

/* =============================================
   15. PRICING MENU ACTIVE INDICATOR
   ============================================= */

.pricing-menu li {
  position: relative;
}
.pricing-menu li.active {
  color: #e50000 !important;
}
.pricing-menu li.active::after {
  background: #e50000;
}

/* =============================================
   16. WIDGET / BLOG
   ============================================= */

.widget-categories ul li a,
.widget-post .widget-slider .item .content .meta-post a,
.widget-post .slider-nav .owl-dot span {
  color: #3a3a3a;
}

/* =============================================
   17. COVERAGE / RANGE
   ============================================= */

.coverage-right-area a {
  color: #e50000;
}

.pricing-range .pricing-header .select-container {
  color: #1a1a1a;
  background-color: rgba(229, 0, 0, 0.08);
}

/* =============================================
   18. FEATURE TABS
   ============================================= */

.feature-tabs li a .subtitle,
.feature-tabs li .nav-link .subtitle {
  color: #3a3a3a;
}

/* =============================================
   19. TEAM
   ============================================= */

.team-item .team-thumb .team-name {
  color: #1a1a1a;
  -webkit-text-stroke-color: #1a1a1a;
}

/* =============================================
   20. COLA NAV
   ============================================= */

.cola-next:hover,
.cola-prev:hover {
  color: #e50000;
}

/* =============================================
   21. BANNER SECTION — Arka plan rengi
   ============================================= */

.banner-20 {
  background: #fff5f5 !important;
}

/* =============================================
   22. SECTION-BG override
   ============================================= */

.section-bg {
  background: #fff5f5;
}

/* =============================================
   23. BODY BACKGROUND
   ============================================= */

body {
  background: #fdf5f5;
}

/* =============================================
   24. BODY--BG CLASS
   ============================================= */

.body--bg {
  background: #fdf5f5 !important;
}

/* =============================================
   25. FOOTER LOGO
   ============================================= */

.footer-section .logo {
  width: 160px;
}
.footer-section .logo img {
  width: 100%;
  max-width: 160px;
}

/* =============================================
   26. APPS DOWNLOAD SECTION — Arka plan
   ============================================= */

.apps-download-section .apps-download-bg {
  background: linear-gradient(135deg, #e50000 0%, #c0392b 100%);
  border-radius: 20px;
}

/* =============================================
   27. BANNER — Arka plan rengi düzeltme
   ============================================= */

/* Banner arka plan resmini kaldır, düz renk kullan */
.banner-20.bg_img {
  background-image: none !important;
  background: linear-gradient(135deg, #fff5f5 0%, #ffe8e8 100%) !important;
}

/* =============================================
   28. FEATURE WRAPPER — Arka plan rengi
   ============================================= */

.feature-wrapper-bg-20 {
  background-image: none !important;
  background: linear-gradient(135deg, #1a1a1a 0%, #3d0000 60%, #e50000 100%) !important;
  border-radius: 20px;
  overflow: hidden;
}

/* =============================================
   29. HOW SECTION — Arka plan
   ============================================= */

.how-section-20 {
  background: #fff8f8;
  padding: 80px 0;
}

/* =============================================
   30. PRICING MENU — Tab aktif çizgi
   ============================================= */

.pricing-menu li.active::before,
.pricing-menu li:hover::before {
  background: linear-gradient(24deg, #e50000 0%, #c0392b 100%) !important;
}

/* =============================================
   31. SCROLLTOTOP BUTTON
   ============================================= */

.scrollToTop {
  background: #e50000 !important;
  border-color: #e50000 !important;
}

/* =============================================
   32. BANNER CONTAINER — Overflow fix
   ============================================= */

/* Banner row içindeki col overflow'u engelle */
.banner-20 .container {
  overflow: visible;
}
.banner-20 .row {
  overflow: hidden;
}

/* Telefon görseli col'u — taşmayı engelle */
.banner-20 .col-lg-5 {
  overflow: hidden;
}

/* =============================================
   33. APPS SCREENSHOT SECTION — Arka plan blob
   ============================================= */

.app-screenshot-20 {
  opacity: 0.08;
}

/* =============================================
   34. PRICING ITEM — 4. kart için nth-child fix
   ============================================= */

/* 4 kart olduğu için her birini ayrı renklendir */
.tab-item .row > div:nth-child(1) .pricing-item-20 {
  background: linear-gradient(160deg, #ff6b6b 0%, #e50000 100%);
}
.tab-item .row > div:nth-child(2) .pricing-item-20 {
  background: linear-gradient(160deg, #e74c3c 0%, #c0392b 100%);
}
.tab-item .row > div:nth-child(3) .pricing-item-20 {
  background: linear-gradient(160deg, #c0392b 0%, #922b21 100%);
}
.tab-item .row > div:nth-child(4) .pricing-item-20 {
  background: linear-gradient(160deg, #922b21 0%, #7b241c 100%);
}

/* =============================================
   35. FONT OVERRIDE — main.css'deki font-family'leri geç
   ============================================= */

/* main.css'de "Open Sans" ve "Josefin Sans" kullanılıyor,
   bunların tamamını Exo 2 ile değiştir */

body,
p,
a,
li,
span,
input,
button,
select,
textarea,
.pricing-menu.cl-black li,
.pricing-item-20 .pricing-body,
.how-item-20 h6,
.section-header p,
.banner-content-20 p,
.feature-content-20 p,
.faq-content p,
.footer-section,
.widget-post,
.widget-categories {
  font-family: 'Poppins', sans-serif !important;
}

h1, h2, h3, h4, h5, h6,
.title,
.section-header .title,
.banner-content-20 .title,
.pricing-item-20 .pricing-header .name,
.pricing-item-20 .pricing-header .price,
.how-item-20 .title,
.feature-content-20 .title,
.cate {
  font-family: 'Poppins', sans-serif !important;
}

/* =============================================
   36. APPS DOWNLOAD — Tam yeniden yazım
   Sorunlar: dönen arka plan, üst üste gelen butonlar,
   negatif margin ile bozulan layout
   ============================================= */

/* Dönen kırmızı arka planı tamamen durdur ve gizle */
.apps-download-bg {
  animation: none !important;
  display: none !important;
}

/* Eski apps-download-screen-20 negatif margin'i sıfırla */
.apps-download-screen-20 {
  margin-top: 0 !important;
  position: static !important;
}

/* Eski apps-download-buttons-20 margin'i sıfırla */
.apps-download-buttons-20 {
  margin-top: 0 !important;
}

/* ---- Yeni temiz download layout ---- */

.apps-download-section {
  background: #fff5f5 !important;
  text-align: center;
}

/* CTA kutusu — başlık + butonlar */
.valego-download-cta {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
  margin-bottom: 48px;
}

.valego-download-label {
  font-family: 'Poppins', sans-serif;
  font-size: 18px;
  font-weight: 600;
  color: #1a1a1a;
  margin: 0;
}

/* Store butonları yan yana */
.valego-store-buttons {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

.valego-store-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #1a1a1a;
  color: #ffffff !important;
  border-radius: 12px;
  padding: 14px 28px;
  font-family: 'Poppins', sans-serif;
  font-size: 16px;
  font-weight: 600;
  text-decoration: none;
  transition: background 0.2s ease, transform 0.2s ease;
  min-width: 160px;
  justify-content: center;
}

.valego-store-btn i {
  font-size: 22px;
  color: #ffffff;
}

.valego-store-btn:hover {
  background: #e50000;
  color: #ffffff !important;
  transform: translateY(-2px);
}

/* Mockup görseli — butonların altında, ortalı */
.valego-download-mockup {
  display: flex;
  justify-content: center;
  align-items: flex-end;
}

.valego-download-mockup img {
  max-width: 680px;
  width: 100%;
  height: auto;
  display: block;
  margin: 0 auto;
}

@media (max-width: 767px) {
  .valego-store-buttons {
    flex-direction: column;
    gap: 12px;
  }
  .valego-store-btn {
    width: 220px;
  }
  .valego-download-mockup img {
    max-width: 100%;
  }
}

/* =============================================
   37. HIYERARŞI — Bölüm sırası güncellendi
   Banner → Fiyat → İndir → Özellikler →
   Nasıl Çalışır → Hakkımızda → SSS → Footer
   ============================================= */

/* Özellikler ve How section padding azalt — daha kompakt */
.feature-section.padding-top,
.how-section-20 {
  padding-top: 60px !important;
}
.feature-section.padding-bottom {
  padding-bottom: 60px !important;
}

/* Hakkımızda section padding */
.apps-screenshot-section-20 {
  padding-top: 60px !important;
  padding-bottom: 60px !important;
}

/* SSS section padding */
.testimonial-section {
  padding-top: 60px !important;
  padding-bottom: 60px !important;
}

/* =============================================
   38. YENİ FİYATLANDIRMA TASARIMI
   ============================================= */

.vg-pricing-section {
  background: #fafafa;
  padding: 80px 0 100px;
}

/* Başlık */
.vg-pricing-header {
  text-align: center;
  margin-bottom: 48px;
}
.vg-pricing-cate {
  display: inline-block;
  font-family: 'Poppins', sans-serif;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: #e50000;
  margin-bottom: 12px;
}
.vg-pricing-title {
  font-family: 'Poppins', sans-serif;
  font-size: clamp(26px, 4vw, 40px);
  font-weight: 700;
  color: #1a1a1a;
  margin: 0 0 12px;
  line-height: 1.2;
}
.vg-pricing-desc {
  font-family: 'Poppins', sans-serif;
  font-size: 16px;
  color: #666;
  margin: 0 auto 32px;
  max-width: 520px;
}

/* Ay/Yıl Toggle */
.vg-billing-toggle {
  display: inline-flex;
  align-items: center;
  background: #f0f0f0;
  border-radius: 50px;
  padding: 4px;
  gap: 4px;
}
.vg-toggle-btn {
  font-family: 'Poppins', sans-serif;
  font-size: 14px;
  font-weight: 600;
  color: #666;
  background: transparent;
  border: none;
  border-radius: 50px;
  padding: 8px 22px;
  cursor: pointer;
  transition: all 0.2s ease;
  display: flex;
  align-items: center;
  gap: 8px;
  width: auto;
  height: auto;
}
.vg-toggle-btn.active {
  background: #ffffff;
  color: #1a1a1a;
  box-shadow: 0 2px 8px rgba(0,0,0,0.12);
}
.vg-save-badge {
  background: #e50000;
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  padding: 2px 8px;
  border-radius: 20px;
  white-space: nowrap;
}

/* Fiyat Bilgilendirme Notu */
.vg-pricing-notice {
  margin-top: 24px;
  padding: 16px 24px;
  background: #fff8e1;
  border-left: 4px solid #e50000;
  border-radius: 8px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}
.vg-pricing-notice p {
  font-family: 'Poppins', sans-serif;
  font-size: 14px;
  color: #666;
  margin: 0;
  line-height: 1.6;
}
.vg-pricing-notice strong {
  color: #1a1a1a;
  font-weight: 600;
}

/* Kart içi KDV notu */
.vg-price-notice {
  font-family: 'Poppins', sans-serif;
  font-size: 12px;
  color: #888;
  margin: 8px 0 0 0;
  line-height: 1.4;
}

/* Grid */
.vg-pricing-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  align-items: start;
}
@media (max-width: 1199px) {
  .vg-pricing-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 575px) {
  .vg-pricing-grid {
    grid-template-columns: 1fr;
  }
}

/* Kart */
.vg-plan-card {
  background: #ffffff;
  border: 1.5px solid #e8e8e8;
  border-radius: 16px;
  padding: 28px 24px;
  position: relative;
  transition: box-shadow 0.2s ease, transform 0.2s ease;
  display: flex;
  flex-direction: column;
}
.vg-plan-card:hover {
  box-shadow: 0 8px 32px rgba(0,0,0,0.10);
  transform: translateY(-3px);
}

/* Öne çıkan kart */
.vg-plan-card--featured {
  border-color: #e50000;
  border-width: 2px;
  box-shadow: 0 4px 24px rgba(229,0,0,0.12);
}
.vg-plan-card--featured:hover {
  box-shadow: 0 12px 40px rgba(229,0,0,0.18);
}

/* Üst rozet (En Çok Tercih Edilen) */
.vg-plan-badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: #e50000;
  color: #fff;
  font-family: 'Poppins', sans-serif;
  font-size: 12px;
  font-weight: 700;
  padding: 4px 16px;
  border-radius: 20px;
  white-space: nowrap;
  letter-spacing: 0.3px;
}

/* Satır içi rozet (Popüler, Premium) */
.vg-plan-badge-inline {
  font-family: 'Poppins', sans-serif;
  font-size: 11px;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: 20px;
  background: #fff3e0;
  color: #e65100;
  white-space: nowrap;
}
.vg-plan-badge-inline--premium {
  background: #fce4ec;
  color: #c62828;
}

/* Plan üst kısım */
.vg-plan-top {
  margin-bottom: 24px;
}
.vg-plan-name-row {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 6px;
  flex-wrap: wrap;
}
.vg-plan-name {
  font-family: 'Poppins', sans-serif;
  font-size: 18px;
  font-weight: 700;
  color: #1a1a1a;
}
.vg-plan-tagline {
  font-family: 'Poppins', sans-serif;
  font-size: 13px;
  color: #888;
  margin: 0 0 20px;
  line-height: 1.4;
}

/* Fiyat bloğu */
.vg-plan-price-block {
  margin-bottom: 20px;
}
.vg-price-main {
  display: flex;
  align-items: baseline;
  gap: 2px;
  line-height: 1;
  margin-bottom: 4px;
}
.vg-price-currency {
  font-family: 'Poppins', sans-serif;
  font-size: 22px;
  font-weight: 700;
  color: #1a1a1a;
}
.vg-price-amount {
  font-family: 'Poppins', sans-serif;
  font-size: 40px;
  font-weight: 800;
  color: #1a1a1a;
  line-height: 1;
}
.vg-price-period {
  font-family: 'Poppins', sans-serif;
  font-size: 15px;
  font-weight: 500;
  color: #888;
  margin-left: 2px;
}
.vg-price-sub {
  font-family: 'Poppins', sans-serif;
  font-size: 13px;
  color: #aaa;
  display: block;
  min-height: 18px;
}
.vg-price-yearly-note {
  color: #2e7d32;
  font-weight: 600;
}

/* Butonlar */
.vg-plan-btn {
  display: block;
  width: 100%;
  text-align: center;
  font-family: 'Poppins', sans-serif;
  font-size: 14px;
  font-weight: 700;
  padding: 12px 20px;
  border-radius: 10px;
  transition: all 0.2s ease;
  text-decoration: none;
  cursor: pointer;
}
.vg-plan-btn--primary {
  background: #e50000;
  color: #ffffff !important;
  border: 2px solid #e50000;
}
.vg-plan-btn--primary:hover {
  background: #c0392b;
  border-color: #c0392b;
  color: #ffffff !important;
}
.vg-plan-btn--outline {
  background: transparent;
  color: #1a1a1a !important;
  border: 2px solid #d0d0d0;
}
.vg-plan-btn--outline:hover {
  border-color: #e50000;
  color: #e50000 !important;
  background: #fff5f5;
}

/* Özellik listesi */
.vg-plan-features {
  border-top: 1px solid #f0f0f0;
  padding-top: 20px;
  flex: 1;
}
.vg-features-title {
  font-family: 'Poppins', sans-serif;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  color: #aaa;
  margin: 0 0 14px;
}
.vg-plan-features ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.vg-plan-features ul li {
  font-family: 'Poppins', sans-serif;
  font-size: 14px;
  color: #444;
  padding: 7px 0;
  display: flex;
  align-items: center;
  gap: 10px;
  border-bottom: none;
  line-height: 1.4;
}
.vg-plan-features ul li i.fa-check {
  color: #e50000;
  font-size: 12px;
  flex-shrink: 0;
  margin-top: 1px;
}

/* Özellik etiketleri */
.vg-feat-tag {
  font-family: 'Poppins', sans-serif;
  font-size: 10px;
  font-weight: 700;
  padding: 2px 7px;
  border-radius: 4px;
  white-space: nowrap;
  flex-shrink: 0;
}
.vg-feat-tag--new {
  background: #e8f5e9;
  color: #2e7d32;
}
.vg-feat-tag--hot {
  background: #fff3e0;
  color: #e65100;
}
.vg-feat-tag--highlight {
  background: #e3f2fd;
  color: #1565c0;
}

/* Alt not */
.vg-pricing-note {
  text-align: center;
  font-family: 'Poppins', sans-serif;
  font-size: 13px;
  color: #aaa;
  margin-top: 36px;
  margin-bottom: 0;
}

/* =============================================
   39. DEĞİŞEN ROZET — En Çok Tercih Edilen / Kampanyalı Fiyat
   ============================================= */

.vg-plan-badge {
  position: absolute;
  top: -16px;
  left: 50%;
  transform: translateX(-50%);
  background: #e50000;
  border-radius: 50px;
  padding: 5px 20px;
  white-space: nowrap;
  overflow: hidden;
  width: calc(100% - 16px);
  max-width: 260px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.vg-badge-text {
  position: absolute;
  font-family: 'Poppins', sans-serif;
  font-size: 12px;
  font-weight: 700;
  color: #ffffff;
  letter-spacing: 0.3px;
  white-space: nowrap;
}

/* A yazısı: görünür → kaybolur */
.vg-badge-text--a {
  animation: vg-fade-a 4s ease-in-out infinite;
}

/* B yazısı: kaybolur → görünür */
.vg-badge-text--b {
  animation: vg-fade-b 4s ease-in-out infinite;
}

@keyframes vg-fade-a {
  0%   { opacity: 1; }
  40%  { opacity: 1; }
  50%  { opacity: 0; }
  90%  { opacity: 0; }
  100% { opacity: 1; }
}

@keyframes vg-fade-b {
  0%   { opacity: 0; }
  40%  { opacity: 0; }
  50%  { opacity: 1; }
  90%  { opacity: 1; }
  100% { opacity: 0; }
}

/* =============================================
   40. AYLIKTAKI FİYAT ALT BİLGİSİ — nötr renk
   Yıllık seçilince JS zaten yeşil class'ı tetikliyor,
   aylıkta gri göster
   ============================================= */

.vg-price-sub.vg-price-yearly-note {
  color: #999;
  font-weight: 500;
}

/* Yıllık aktifken JS data-yearly dolu olduğunda yeşil yap */
.vg-pricing-section[data-period="yearly"] .vg-price-sub.vg-price-yearly-note {
  color: #2e7d32;
  font-weight: 600;
}

/* =============================================
   41. BUTON ALTI TASARRUF NOTU
   ============================================= */

.vg-savings-note {
  font-family: 'Poppins', sans-serif;
  font-size: 12px;
  color: #888;
  text-align: center;
  margin: 8px 0 0;
  line-height: 1.4;
}

.vg-savings-note strong {
  color: #2e7d32;
  font-weight: 700;
}

/* Ücretsiz pakette italik ve daha soluk */
.vg-plan-card:first-child .vg-savings-note {
  font-style: italic;
  color: #bbb;
}

/* =============================================
   42. NASIL ÇALIŞIR — Yeni Tasarım
   ============================================= */

.vg-how-section {
  background: #ffffff;
  padding: 90px 0;
  overflow: hidden;
}

/* İki sütun grid */
.vg-how-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
@media (max-width: 991px) {
  .vg-how-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }
  .vg-how-right {
    order: -1;
  }
}

/* Sol taraf */
.vg-how-cate {
  display: inline-block;
  font-family: 'Poppins', sans-serif;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: #e50000;
  margin-bottom: 12px;
}
.vg-how-title {
  font-family: 'Poppins', sans-serif;
  font-size: clamp(28px, 3.5vw, 42px);
  font-weight: 800;
  color: #1a1a1a;
  line-height: 1.15;
  margin: 0 0 14px;
}
.vg-how-desc {
  font-family: 'Poppins', sans-serif;
  font-size: 15px;
  color: #777;
  margin: 0 0 40px;
  line-height: 1.6;
}

/* Adımlar */
.vg-steps {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin-bottom: 36px;
}

.vg-step {
  position: relative;
  padding-bottom: 8px;
}

.vg-step-body {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  position: relative;
  z-index: 1;
}

/* Numara */
.vg-step-num {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: #e50000;
  color: #fff;
  font-family: 'Poppins', sans-serif;
  font-size: 13px;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  position: absolute;
  left: -48px;
  top: 4px;
}

/* İkon kutusu */
.vg-step-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: #fff5f5;
  border: 1.5px solid #ffd0d0;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.vg-step-icon i {
  font-size: 18px;
  color: #e50000;
}

/* Metin */
.vg-step-text h4 {
  font-family: 'Poppins', sans-serif;
  font-size: 15px;
  font-weight: 700;
  color: #1a1a1a;
  margin: 0 0 4px;
  line-height: 1.3;
}
.vg-step-text p {
  font-family: 'Poppins', sans-serif;
  font-size: 13px;
  color: #888;
  margin: 0;
  line-height: 1.5;
}

/* Adımlar arası dikey çizgi */
.vg-step-line {
  width: 2px;
  height: 28px;
  background: linear-gradient(to bottom, #ffd0d0, transparent);
  margin: 8px 0 8px 23px;
}

/* Adım numaralarını göstermek için sol padding */
.vg-steps {
  padding-left: 48px;
}

/* CTA butonu */
.vg-how-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #e50000;
  color: #ffffff !important;
  font-family: 'Poppins', sans-serif;
  font-size: 14px;
  font-weight: 700;
  padding: 13px 28px;
  border-radius: 10px;
  text-decoration: none;
  transition: background 0.2s ease, transform 0.2s ease;
}
.vg-how-cta:hover {
  background: #c0392b;
  transform: translateY(-2px);
  color: #ffffff !important;
}
.vg-how-cta i {
  font-size: 13px;
  transition: transform 0.2s ease;
}
.vg-how-cta:hover i {
  transform: translateX(4px);
}

/* Sağ taraf — telefon */
.vg-how-right {
  display: flex;
  justify-content: center;
}

.vg-how-phone-wrap {
  position: relative;
  display: inline-block;
}

.vg-how-phone {
  max-height: 520px;
  width: auto;
  max-width: 100%;
  display: block;
  filter: drop-shadow(0 20px 40px rgba(0,0,0,0.15));
}

/* Floating badge'ler */
.vg-how-badge {
  position: absolute;
  background: #ffffff;
  border-radius: 50px;
  padding: 8px 14px;
  font-family: 'Poppins', sans-serif;
  font-size: 12px;
  font-weight: 600;
  color: #1a1a1a;
  box-shadow: 0 4px 20px rgba(0,0,0,0.12);
  white-space: nowrap;
  display: flex;
  align-items: center;
  gap: 6px;
  animation: vg-float 3s ease-in-out infinite;
}
.vg-how-badge i {
  color: #e50000;
  font-size: 13px;
}

.vg-how-badge--1 {
  top: 15%;
  left: -30px;
  animation-delay: 0s;
}
.vg-how-badge--2 {
  top: 45%;
  right: -20px;
  animation-delay: 1s;
}
.vg-how-badge--3 {
  bottom: 18%;
  left: -20px;
  animation-delay: 2s;
}

@keyframes vg-float {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-6px); }
}

@media (max-width: 575px) {
  .vg-how-badge { display: none; }
  .vg-how-phone { max-height: 380px; }
}

/* =============================================
   43. FOOTER — Premium Yeni Tasarım
   ============================================= */

.vg-footer {
  background: #111111;
  margin-top: 0;
}

/* ---- CTA Bandı ---- */
.vg-footer-cta-band {
  background: linear-gradient(135deg, #e50000 0%, #a80000 100%);
  padding: 48px 0;
}
.vg-footer-cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
}
.vg-footer-cta-text h3 {
  font-family: 'Poppins', sans-serif;
  font-size: clamp(20px, 2.5vw, 28px);
  font-weight: 700;
  color: #ffffff;
  margin: 0 0 8px;
  line-height: 1.3;
}
.vg-footer-cta-text p {
  font-family: 'Poppins', sans-serif;
  font-size: 16px;
  font-weight: 500;
  color: rgba(255,255,255,0.9);
  margin: 0;
}
.vg-footer-cta-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  flex-shrink: 0;
}
.vg-footer-cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: 'Poppins', sans-serif;
  font-size: 16px;
  font-weight: 700;
  padding: 16px 32px;
  border-radius: 12px;
  text-decoration: none;
  transition: all 0.2s ease;
  white-space: nowrap;
}
.vg-footer-cta-btn--white {
  background: #ffffff;
  color: #e50000 !important;
}
.vg-footer-cta-btn--white:hover {
  background: #f5f5f5;
  transform: translateY(-2px);
  color: #c0392b !important;
}
.vg-footer-cta-btn--ghost {
  background: rgba(255,255,255,0.12);
  color: #ffffff !important;
  border: 1.5px solid rgba(255,255,255,0.3);
}
.vg-footer-cta-btn--ghost:hover {
  background: rgba(255,255,255,0.22);
  color: #ffffff !important;
  transform: translateY(-2px);
}
.vg-footer-cta-btn i {
  font-size: 18px;
}

/* ---- Ana Gövde ---- */
.vg-footer-body {
  padding: 72px 0 56px;
  border-bottom: 1px solid rgba(255,255,255,0.07);
  position: relative;
  overflow: hidden;
}

/* Arka plan dekoratif daireler */
.vg-footer-body::before {
  content: '';
  position: absolute;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(229,0,0,0.06) 0%, transparent 70%);
  top: -150px;
  right: -100px;
  pointer-events: none;
  animation: vg-footer-glow 8s ease-in-out infinite alternate;
}
.vg-footer-body::after {
  content: '';
  position: absolute;
  width: 350px;
  height: 350px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(229,0,0,0.04) 0%, transparent 70%);
  bottom: -80px;
  left: 10%;
  pointer-events: none;
  animation: vg-footer-glow 10s ease-in-out infinite alternate-reverse;
}

@keyframes vg-footer-glow {
  0%   { transform: scale(1) translate(0, 0); opacity: 0.6; }
  100% { transform: scale(1.2) translate(20px, -20px); opacity: 1; }
}

.vg-footer-grid {
  display: grid;
  grid-template-columns: 2.2fr 1fr 1fr 1.4fr;
  gap: 48px;
  position: relative;
  z-index: 1;
}
@media (max-width: 991px) {
  .vg-footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 36px;
  }
  .vg-footer-brand { grid-column: 1 / -1; }
}
@media (max-width: 575px) {
  .vg-footer-grid { grid-template-columns: 1fr; }
  .vg-footer-cta-inner { flex-direction: column; align-items: flex-start; }
}

/* Marka */
.vg-footer-logo-img {
  height: 42px;
  width: auto;
  display: block;
  margin-bottom: 20px;
  /* Orijinal renk — filtre yok */
  filter: none;
}
.vg-footer-brand p {
  font-family: 'Poppins', sans-serif;
  font-size: 17px;
  font-weight: 500;
  color: rgba(255,255,255,0.95);
  line-height: 1.8;
  margin: 0 0 24px;
  max-width: 320px;
}

/* Sosyal */
.vg-footer-social {
  display: flex;
  gap: 10px;
}
.vg-footer-social a {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.15);
  color: rgba(255,255,255,0.9);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 17px;
  transition: all 0.25s ease;
  text-decoration: none;
}
.vg-footer-social a:hover {
  background: #e50000;
  border-color: #e50000;
  color: #ffffff;
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(229,0,0,0.35);
}

/* Kolonlar */
.vg-footer-col-title {
  font-family: 'Poppins', sans-serif;
  font-size: 14px;
  font-weight: 700;
  color: rgba(255,255,255,0.95);
  text-transform: uppercase;
  letter-spacing: 1.8px;
  margin: 0 0 22px;
}
.vg-footer-col ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.vg-footer-col ul li {
  padding: 0;
  margin-bottom: 14px;
}
.vg-footer-col ul li a {
  font-family: 'Poppins', sans-serif;
  font-size: 17px;
  font-weight: 500;
  color: rgba(255,255,255,0.95);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: all 0.2s ease;
}
.vg-footer-col ul li a i {
  font-size: 10px;
  color: rgba(255,255,255,0.4);
  transition: all 0.2s ease;
}
.vg-footer-col ul li a:hover {
  color: #e50000;
  gap: 12px;
}
.vg-footer-col ul li a:hover i {
  color: #e50000;
}

/* İletişim listesi */
.vg-footer-contact li {
  display: flex !important;
  align-items: flex-start;
  gap: 14px;
  margin-bottom: 18px !important;
}
.vg-footer-contact li i {
  color: #e50000;
  font-size: 17px;
  margin-top: 3px;
  flex-shrink: 0;
}
.vg-footer-contact li a,
.vg-footer-contact li span {
  font-family: 'Poppins', sans-serif;
  font-size: 17px;
  font-weight: 500;
  color: rgba(255,255,255,0.95);
  text-decoration: none;
  transition: color 0.2s ease;
  line-height: 1.6;
}
.vg-footer-contact li a:hover {
  color: #e50000;
}

/* ---- Alt Bar ---- */
.vg-footer-bottom {
  padding: 24px 0;
  position: relative;
  z-index: 1;
}
.vg-footer-bottom-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 14px;
}
.vg-footer-bottom p {
  font-family: 'Poppins', sans-serif;
  font-size: 16px;
  font-weight: 500;
  color: rgba(255,255,255,0.85);
  margin: 0;
}
.vg-footer-bottom-links {
  display: flex;
  align-items: center;
  gap: 12px;
}
.vg-footer-bottom-links a {
  font-family: 'Poppins', sans-serif;
  font-size: 16px;
  font-weight: 500;
  color: rgba(255,255,255,0.85);
  text-decoration: none;
  transition: color 0.2s ease;
}
.vg-footer-bottom-links a:hover { color: #e50000; }
.vg-footer-bottom-links span {
  color: rgba(255,255,255,0.4);
  font-size: 14px;
}

/* =============================================
   44. FOOTER — Parçacık Animasyonları
   ============================================= */

.vg-footer-particles {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
  z-index: 0;
}

.vg-fp {
  position: absolute;
  border-radius: 50%;
  opacity: 0;
  animation: vg-particle-rise 12s ease-in-out infinite;
}

.vg-fp--1 {
  width: 6px; height: 6px;
  background: #e50000;
  left: 15%;
  bottom: 0;
  animation-delay: 0s;
  animation-duration: 10s;
}
.vg-fp--2 {
  width: 4px; height: 4px;
  background: rgba(229,0,0,0.5);
  left: 35%;
  bottom: 0;
  animation-delay: 2.5s;
  animation-duration: 13s;
}
.vg-fp--3 {
  width: 8px; height: 8px;
  background: rgba(229,0,0,0.3);
  left: 60%;
  bottom: 0;
  animation-delay: 5s;
  animation-duration: 11s;
}
.vg-fp--4 {
  width: 5px; height: 5px;
  background: #e50000;
  left: 78%;
  bottom: 0;
  animation-delay: 1.5s;
  animation-duration: 14s;
}
.vg-fp--5 {
  width: 3px; height: 3px;
  background: rgba(229,0,0,0.6);
  left: 90%;
  bottom: 0;
  animation-delay: 7s;
  animation-duration: 9s;
}

@keyframes vg-particle-rise {
  0%   { transform: translateY(0) scale(1);   opacity: 0; }
  10%  { opacity: 0.8; }
  80%  { opacity: 0.4; }
  100% { transform: translateY(-320px) scale(0.3); opacity: 0; }
}

/* Kolon başlıklarına ince kırmızı alt çizgi animasyonu */
.vg-footer-col-title {
  position: relative;
  padding-bottom: 10px;
  margin-bottom: 22px;
}
.vg-footer-col-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 24px;
  height: 2px;
  background: #e50000;
  border-radius: 2px;
  transition: width 0.3s ease;
}
.vg-footer-col:hover .vg-footer-col-title::after {
  width: 48px;
}

/* Link hover — sol kırmızı çizgi efekti */
.vg-footer-col ul li {
  position: relative;
  padding-left: 0;
  transition: padding-left 0.2s ease;
}
.vg-footer-col ul li:hover {
  padding-left: 4px;
}
