/* ==========================================
   NAVBAR - TAM KESİN ÇÖZÜM
========================================== */
@media (max-width: 991px) {
  /* Navbar ana container - sabit üstte */
  .custom-navbar {
    padding: 15px 0 !important;
    background: #ffffff !important;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1) !important;
    position: sticky !important;
    top: 0 !important;
    z-index: 9999 !important;
    width: 100% !important;
  }

  .custom-container {
    padding: 0 20px !important;
    max-width: 100% !important;
  }

  /* Brand */
  .navbar-brand {
    font-size: 20px !important;
    color: #000 !important;
    font-weight: 600 !important;
  }

  /* Hamburger toggle */
  .navbar-toggler {
    padding: 8px 12px !important;
    border: 2px solid #ddd !important;
    background: #fff !important;
    border-radius: 4px !important;
  }

  .navbar-toggler:focus {
    box-shadow: none !important;
    outline: none !important;
  }

  .navbar-toggler-icon {
    width: 22px !important;
    height: 22px !important;
  }

  /* Menü collapse area - KAPATILDIĞINDA GİZLE */
  .navbar-collapse {
    background: #ffffff !important;
    margin-top: 20px !important;
    padding: 25px 20px !important;
    border-radius: 12px !important;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15) !important;
    border: 1px solid #e8e8e8 !important;
    width: calc(100% - 40px) !important;
    margin-left: 20px !important;
    margin-right: 20px !important;
  }

  /* KAPALI durumda sakla */
  .navbar-collapse.collapse:not(.show) {
    display: none !important;
    visibility: hidden !important;
    opacity: 0 !important;
    height: 0 !important;
  }

  /* AÇIK durumda göster */
  .navbar-collapse.collapse.show {
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
    height: auto !important;
  }

  /* Animasyon sırasında */
  .navbar-collapse.collapsing {
    display: block !important;
    transition: height 0.35s ease !important;
  }

  /* Menü nav */
  .navbar-nav {
    display: flex !important;
    flex-direction: column !important;
    width: 100% !important;
    padding: 0 !important;
    margin: 0 !important;
    list-style: none !important;
  }

  /* Menü items */
  .nav-item {
    width: 100% !important;
    margin: 0 !important;
    padding: 0 !important;
    border-bottom: 1px solid #f0f0f0 !important;
  }

  .nav-item:last-child {
    border-bottom: none !important;
  }

  /* Nav links */
  .nav-link {
    display: block !important;
    width: 100% !important;
    padding: 16px 10px !important;
    color: #333 !important;
    font-size: 16px !important;
    font-weight: 500 !important;
    text-decoration: none !important;
    transition: all 0.3s ease !important;
  }

  .nav-link:hover,
  .nav-link:focus {
    color: #0066ff !important;
    background: #f8f9fa !important;
    padding-left: 15px !important;
  }

  /* Dropdown özel stil */
  .nav-item.dropdown {
    position: relative !important;
  }

  .dropdown-toggle {
    display: flex !important;
    justify-content: space-between !important;
    align-items: center !important;
  }

  .dropdown-toggle::after {
    margin-left: auto !important;
    margin-top: 0 !important;
    transition: transform 0.3s ease !important;
  }

  /* Dropdown açıkken ok dönsün */
  .dropdown-toggle[aria-expanded="true"]::after {
    transform: rotate(180deg) !important;
  }

  /* Dropdown menu */
  .dropdown-menu {
    position: static !important;
    width: 100% !important;
    border: none !important;
    box-shadow: none !important;
    background: #f8f9fa !important;
    margin: 0 !important;
    padding: 8px 0 8px 25px !important;
    border-radius: 0 !important;
  }

  .dropdown-item {
    padding: 12px 10px !important;
    color: #666 !important;
    font-size: 15px !important;
    background: transparent !important;
    border: none !important;
    transition: all 0.3s ease !important;
  }

  .dropdown-item:hover,
  .dropdown-item:focus {
    background: #e9ecef !important;
    color: #0066ff !important;
    padding-left: 15px !important;
  }

  /* Form Doldur butonu container */
  .nav-item:has(.btn-form-doldur) {
    border: none !important;
    margin-top: 20px !important;
    padding-top: 20px !important;
    border-top: 2px solid #e0e0e0 !important;
  }

  .nav-item:has(.btn-form-doldur) > a {
    padding: 0 !important;
  }

  /* Form Doldur butonu */
  .btn-form-doldur {
    width: 100% !important;
    padding: 16px 24px !important;
    display: block !important;
    text-align: center !important;
    border-radius: 8px !important;
    font-size: 16px !important;
    font-weight: 600 !important;
    transition: all 0.3s ease !important;
  }

  .btn-form-doldur:hover {
    transform: translateY(-2px) !important;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15) !important;
  }
}

@media (max-width: 767px) {
  .custom-container {
    padding: 0 15px !important;
  }

  .navbar-brand {
    font-size: 18px !important;
  }

  .navbar-collapse {
    padding: 20px 18px !important;
    margin-left: 15px !important;
    margin-right: 15px !important;
    width: calc(100% - 30px) !important;
  }

  .nav-link {
    font-size: 15px !important;
    padding: 14px 10px !important;
  }

  .dropdown-item {
    font-size: 14px !important;
    padding: 10px 8px !important;
  }

  .btn-form-doldur {
    padding: 14px 20px !important;
    font-size: 15px !important;
  }
}

@media (max-width: 575px) {
  .navbar-brand {
    font-size: 16px !important;
  }

  .navbar-collapse {
    padding: 18px 15px !important;
  }

  .nav-link {
    font-size: 14px !important;
    padding: 12px 8px !important;
  }

  .dropdown-item {
    font-size: 13px !important;
    padding: 9px 6px !important;
  }

  .btn-form-doldur {
    font-size: 14px !important;
    padding: 12px 18px !important;
  }
}

/* Mobile Dropdown Wrapper */
@media (max-width: 991px) {
  .mobile-dropdown-wrapper {
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
    width: 100% !important;
    border-bottom: 1px solid #f0f0f0 !important;
  }

  .mobile-dropdown-wrapper .nav-link {
    flex: 1 !important;
    padding: 16px 10px !important;
    border: none !important;
    margin: 0 !important;
  }

  .mobile-dropdown-toggle {
    background: transparent !important;
    border: none !important;
    padding: 16px 15px !important;
    cursor: pointer !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    transition: all 0.3s ease !important;
  }

  .mobile-dropdown-toggle:hover {
    background: #f0f0f0 !important;
  }

  .mobile-dropdown-toggle .arrow-down {
    width: 0 !important;
    height: 0 !important;
    border-left: 5px solid transparent !important;
    border-right: 5px solid transparent !important;
    border-top: 5px solid #333 !important;
    transition: transform 0.3s ease !important;
    display: block !important;
  }

  .mobile-dropdown-toggle.active .arrow-down {
    transform: rotate(180deg) !important;
  }

  /* Dropdown özel düzen */
  .nav-item.dropdown {
    border-bottom: none !important;
  }

  .nav-item.dropdown .dropdown-menu {
    border-top: 1px solid #e0e0e0 !important;
    margin-top: 0 !important;
  }
}

/* Desktop'ta gizle */
@media (min-width: 992px) {
  .mobile-dropdown-wrapper {
    display: none !important;
  }

  .mobile-dropdown-toggle {
    display: none !important;
  }
}
/* ==========================================
   DROPDOWN - DESKTOP/MOBILE AYRILMASI
========================================== */

/* Desktop için - her zaman göster */
@media (min-width: 992px) {
  .desktop-dropdown {
    display: inline-block !important;
    visibility: visible !important;
    opacity: 1 !important;
  }

  .mobile-dropdown-wrapper {
    display: none !important;
  }
}

/* Mobil için */
@media (max-width: 991px) {
  .desktop-dropdown {
    display: none !important;
  }

  .mobile-dropdown-wrapper {
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
    width: 100% !important;
    border-bottom: 1px solid #f0f0f0 !important;
  }

  .mobile-dropdown-wrapper .nav-link {
    flex: 1 !important;
    padding: 16px 10px !important;
    border: none !important;
    margin: 0 !important;
  }

  .mobile-dropdown-toggle {
    background: transparent !important;
    border: none !important;
    padding: 16px 15px !important;
    cursor: pointer !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    transition: all 0.3s ease !important;
    flex-shrink: 0 !important;
  }

  .mobile-dropdown-toggle:hover {
    background: #f0f0f0 !important;
  }

  .mobile-dropdown-toggle .arrow-down {
    width: 0 !important;
    height: 0 !important;
    border-left: 5px solid transparent !important;
    border-right: 5px solid transparent !important;
    border-top: 6px solid #333 !important;
    transition: transform 0.3s ease !important;
    display: block !important;
  }

  .mobile-dropdown-toggle.active .arrow-down {
    transform: rotate(180deg) !important;
  }

  .nav-item.dropdown {
    border-bottom: none !important;
  }

  .nav-item.dropdown .dropdown-menu {
    border-top: 1px solid #e0e0e0 !important;
    margin-top: 0 !important;
  }

  .hero-image {
    position: relative;
    height: 425px !important;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  img.world-map {
    width: 460px !important;
  }
}

/* ==========================================
   2. HERO SECTION
========================================== */
@media (max-width: 991) {
  .hero-section {
    padding: 60px 0 !important;
    min-height: auto !important;
  }

  .hero-container {
    padding-left: 30px !important;
    padding-right: 30px !important;
  }

  .hero-content {
    text-align: center !important;
    margin-bottom: 40px !important;
  }

  .web-mobile-rev {
    margin: auto !important;
    padding: 20px !important;
  }

  .hero-title {
    font-size: 32px !important;
    line-height: 40px !important;
    margin-bottom: 20px !important;
  }

  .hero-description {
    font-size: 16px !important;
    line-height: 24px !important;
    margin-bottom: 30px !important;
  }

  .hero-buttons {
    flex-direction: column !important;
    align-items: center !important;
    gap: 15px !important;
  }

  .btn-hero-primary,
  .btn-hero-secondary {
    width: 100% !important;
    max-width: 300px !important;
    justify-content: center !important;
  }

  .hero-image {
    position: relative;
    height: 455px !important;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  img.world-map {
    width: 460px !important;
  }

  .world-map {
    max-width: 100% !important;
    height: auto !important;
  }
}

@media (max-width: 767px) {
  .hero-section {
    padding: 40px 0 !important;
  }

  .web-mobile-rev {
    margin: auto !important;
    padding: 8px !important;
  }

  .hero-container {
    padding-left: 20px !important;
    padding-right: 20px !important;
  }

  .hero-title {
    font-size: 26px !important;
    line-height: 34px !important;
  }

  .hero-description {
    font-size: 14px !important;
    line-height: 22px !important;
  }

  .hero-description br {
    display: none !important;
  }
}

@media (max-width: 575px) {
  .hero-title {
    font-size: 30px !important;
  }

  .btn-hero-primary,
  .btn-hero-secondary {
    font-size: 14px !important;
    padding: 12px 20px !important;
  }
}

/* ==========================================
   3. SERVICES SECTION (ABD Şirket Hizmetleri)
========================================== */
@media (max-width: 991) {
  .services-section {
    padding: 60px 0 !important;
  }

  .services-container {
    padding-left: 30px !important;
    padding-right: 30px !important;
  }

  .section-header {
    text-align: center !important;
    margin-bottom: 40px !important;
  }

  .section-title {
    font-size: 32px !important;
    line-height: 40px !important;
    margin-bottom: 20px !important;
  }

  .section-description {
    font-size: 16px !important;
    line-height: 24px !important;
  }

  .section-description br {
    display: none !important;
  }

  .services-grid {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 20px !important;
  }

  .service-card {
    padding: 20px !important;
  }

  .service-box {
    height: 140px !important;
    margin-bottom: 15px !important;
  }

  .service-title {
    font-size: 18px !important;
    line-height: 24px !important;
  }

  .service-icon {
    width: 50px !important;
    height: 50px !important;
  }

  .service-icon-ein {
    width: 60px !important;
    height: 60px !important;
  }

  .service-description {
    font-size: 13px !important;
    line-height: 20px !important;
  }

  .service-description br {
    display: none !important;
  }

  .services-cta {
    margin-top: 40px !important;
  }

  .btn-services-cta {
    font-size: 14px !important;
    padding: 14px 24px !important;
  }
}

@media (max-width: 767px) {
  .services-section {
    padding: 40px 0 !important;
  }

  .services-container {
    padding-left: 20px !important;
    padding-right: 20px !important;
  }

  .section-title {
    font-size: 26px !important;
    line-height: 34px !important;
  }

  .section-description {
    font-size: 14px !important;
    line-height: 22px !important;
  }

  .services-grid {
    grid-template-columns: 1fr !important;
    gap: 15px !important;
  }

  .service-box {
    height: 120px !important;
  }

  .service-title {
    font-size: 16px !important;
    line-height: 1.2;
  }

  .service-icon {
    width: 45px !important;
    height: 45px !important;
  }

  .service-icon-ein {
    width: 55px !important;
    height: 55px !important;
  }
}

@media (max-width: 575px) {
  .section-title {
    font-size: 22px !important;
    line-height: 30px !important;
  }

  .btn-services-cta {
    font-size: 13px !important;
    padding: 12px 20px !important;
    text-align: center !important;
  }

  .cta-arrow {
    width: 16px !important;
    height: 16px !important;
  }
}
/* ==========================================
   AMAZON SECTION - DÜZELTME
========================================== */
@media (max-width: 991) {
  .amazon-section {
    padding: 60px 20px !important;
  }

  .amazon-container {
    max-width: 100% !important;
    padding: 0 15px !important;
  }

  .amazon-header {
    text-align: center !important;
    margin-bottom: 40px !important;
  }

  .amazon-title {
    font-size: 28px !important;
    line-height: 36px !important;
    margin-bottom: 20px !important;
  }

  .amazon-description {
    font-size: 15px !important;
    line-height: 24px !important;
  }

  .amazon-description br {
    display: none !important;
  }

  .amazon-grid {
    display: flex !important;
    flex-direction: column !important;
    gap: 25px !important;
  }

  .amazon-card {
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    text-align: center !important;
    padding: 25px 20px !important;
    width: auto !important;
    max-width: 100% !important;
  }

  .amazon-icon-box {
    margin-bottom: 20px !important;
    margin-right: 0 !important;
    margin-left: 0;
  }

  .amazon-icon {
    width: 60px !important;
    height: 60px !important;
  }

  .amazon-content {
    width: 100% !important;
  }

  .amazon-card-title {
    font-size: 20px !important;
    line-height: 28px !important;
    margin-bottom: 12px !important;
  }

  .amazon-card-text {
    font-size: 14px !important;
    line-height: 22px !important;
  }

  .amazon-card-text br {
    display: none !important;
  }
}

@media (max-width: 767px) {
  .amazon-card {
    width: auto !important;
  }
  .amazon-section {
    padding: 40px 15px !important;
  }

  .amazon-title {
    font-size: 24px !important;
    line-height: 32px !important;
  }

  .amazon-description {
    font-size: 14px !important;
    line-height: 22px !important;
  }

  .amazon-card {
    padding: 20px 15px !important;
  }

  .amazon-icon {
    width: 50px !important;
    height: 50px !important;
  }

  .amazon-card-title {
    font-size: 18px !important;
    line-height: 26px !important;
  }

  .amazon-card-text {
    font-size: 13px !important;
    line-height: 20px !important;
  }

  .step.step2,
  .step.step4 {
    margin-left: 0px;
    margin-top: -35px !important;
  }

  .\.divider-home {
    display: none !important;
  }
}

@media (max-width: 575px) {
  .amazon-title {
    font-size: 20px !important;
    line-height: 28px !important;
  }

  .amazon-card-title {
    font-size: 16px !important;
  }
}

/* ==========================================
   SALES JOURNEY - DÜZELTME
========================================== */
@media (max-width: 991) {
  .sales-journey {
    padding: 60px 20px !important;
    overflow: hidden !important;
    margin-bottom: 30px;
  }

  .section-bg {
    display: none !important;
  }

  .section-title-timeline {
    font-size: 26px !important;
    line-height: 34px !important;
    margin-bottom: 40px !important;
    text-align: center !important;
    width: 100% !important;
  }

  .road-shape {
    display: none !important;
  }

  .step {
    position: static !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    text-align: center !important;
    margin-bottom: 30px !important;
    padding: 25px 15px !important;
    background: rgba(255, 255, 255, 0.05) !important;
    border-radius: 12px !important;
    width: 100% !important;
    max-width: 100% !important;
  }

  .step1,
  .step2,
  .step3,
  .step4 {
    position: static !important;
    left: auto !important;
    right: auto !important;
    top: auto !important;
    width: 100% !important;
    max-width: 100% !important;
  }

  .step .icon {
    width: 80px !important;
    height: 80px !important;
    margin: 0 auto 20px !important;
    position: static !important;
  }

  .step .text {
    width: 100% !important;
    max-width: 100% !important;
  }

  .step .text h3 {
    font-size: 20px !important;
    line-height: 28px !important;
    margin-bottom: 12px !important;
    width: 100% !important;
  }

  .step .text p {
    font-size: 14px !important;
    line-height: 22px !important;
    width: 100% !important;
  }

  .section-end {
    font-size: 26px !important;
    line-height: 34px !important;
    text-align: center !important;
    margin: 40px 0 30px !important;
    width: 100% !important;
  }

  .cta-btn {
    font-size: 14px !important;
    padding: 14px 24px !important;
    max-width: 100% !important;
    width: 100% !important;
    text-align: center !important;
    display: block !important;
    margin: 0 auto !important;
  }

  .cta-btn span {
    margin-left: 8px !important;
  }

  .cta-btn span img {
    width: 16px !important;
    height: 16px !important;
    vertical-align: middle !important;
  }
}

@media (max-width: 767px) {
  .sales-journey {
    padding: 90px 25px !important;
  }

  .section-title-timeline {
    font-size: 22px !important;
    line-height: 30px !important;
    margin-bottom: 30px !important;
  }

  .step {
    padding: 20px 15px !important;
    margin-bottom: 25px !important;
  }

  .step .icon {
    width: 70px !important;
    height: 70px !important;
    margin-bottom: 15px !important;
  }

  .step .text h3 {
    font-size: 18px !important;
    line-height: 26px !important;
  }

  .step .text p {
    font-size: 13px !important;
    line-height: 20px !important;
  }

  .section-end {
    font-size: 22px !important;
    line-height: 30px !important;
    margin: 30px 0 25px !important;
  }

  .cta-btn {
    font-size: 13px !important;
    padding: 12px 20px !important;
  }

  .section-bg {
    display: none !important;
  }

  .section-title-timeline {
    font-size: 26px !important;
    line-height: 34px !important;
    margin-bottom: 40px !important;
    text-align: center !important;
    width: 100% !important;
  }

  .road-shape {
    display: none !important;
  }

  .step {
    position: static !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    text-align: center !important;
    margin-bottom: 30px !important;
    padding: 25px 15px !important;
    background: rgba(255, 255, 255, 0.05) !important;
    border-radius: 12px !important;
    width: 100% !important;
    max-width: 100% !important;
  }

  .step1,
  .step2,
  .step3,
  .step4 {
    position: static !important;
    left: auto !important;
    right: auto !important;
    top: auto !important;
    width: 100% !important;
    max-width: 100% !important;
  }

  .step .icon {
    width: 80px !important;
    height: 80px !important;
    margin: 0 auto 20px !important;
    position: static !important;
  }

  .step .text {
    width: 100% !important;
    max-width: 100% !important;
  }

  .step .text h3 {
    font-size: 20px !important;
    line-height: 28px !important;
    margin-bottom: 12px !important;
    width: 100% !important;
  }

  .step .text p {
    font-size: 14px !important;
    line-height: 22px !important;
    width: 100% !important;
  }

  .section-end {
    font-size: 26px !important;
    line-height: 34px !important;
    text-align: center !important;
    margin: 40px 0 30px !important;
    width: 100% !important;
  }

  .cta-btn {
    font-size: 14px !important;
    padding: 14px 24px !important;
    max-width: 100% !important;
    width: 100% !important;
    text-align: center !important;
    display: block !important;
    margin: 0 auto !important;
  }

  .cta-btn span {
    margin-left: 8px !important;
  }

  .cta-btn span img {
    width: 16px !important;
    height: 16px !important;
    vertical-align: middle !important;
  }
}

@media (max-width: 575px) {
  .section-title-timeline {
    font-size: 20px !important;
    line-height: 28px !important;
  }

  .step {
    padding: 18px 12px !important;
  }

  .step .icon {
    width: 60px !important;
    height: 60px !important;
  }

  .step .text h3 {
    font-size: 16px !important;
    line-height: 24px !important;
  }

  .step .text p {
    font-size: 12px !important;
    line-height: 18px !important;
  }

  .section-end {
    font-size: 20px !important;
    line-height: 28px !important;
  }

  .cta-btn {
    font-size: 12px !important;
    padding: 10px 18px !important;
  }
}

/* ==========================================
   5. SALES JOURNEY (Timeline)
========================================== */
@media (max-width: 991) {
  .sales-journey {
    padding: 60px 20px !important;
  }

  .section-title-timeline {
    font-size: 28px !important;
    line-height: 36px !important;
    margin-bottom: 40px !important;
    text-align: center !important;
  }

  .road-shape {
    display: none !important;
  }

  .step {
    position: static !important;
    flex-direction: column !important;
    text-align: center !important;
    margin-bottom: 40px !important;
    padding: 25px !important;
    background: rgba(255, 255, 255, 0.05) !important;
    border-radius: 12px !important;
  }

  .step .icon {
    width: 80px !important;
    height: 80px !important;
    margin: 0 auto 20px !important;
  }

  .step .text h3 {
    font-size: 20px !important;
    line-height: 28px !important;
    margin-bottom: 12px !important;
  }

  .step .text p {
    font-size: 14px !important;
    line-height: 22px !important;
  }

  .section-end {
    font-size: 28px !important;
    text-align: center !important;
    margin: 40px 0 30px !important;
  }

  .cta-btn {
    font-size: 14px !important;
    padding: 14px 24px !important;
    max-width: 100% !important;
    text-align: center !important;
    display: block !important;
    margin: 0 auto !important;
  }
}

@media (max-width: 767px) {
  .sales-journey {
    padding: 90px 25px !important;
  }

  .section-title-timeline {
    font-size: 24px !important;
    line-height: 32px !important;
  }

  .step {
    padding: 20px !important;
    margin-bottom: 30px !important;
  }

  .step .icon {
    width: 60px !important;
    height: 60px !important;
  }

  .step .text h3 {
    font-size: 18px !important;
    line-height: 26px !important;
  }

  .step .text p {
    font-size: 13px !important;
    line-height: 20px !important;
  }

  .section-end {
    font-size: 24px !important;
  }
}

@media (max-width: 575px) {
  .section-title-timeline {
    font-size: 20px !important;
    line-height: 28px !important;
  }

  .step .text h3 {
    font-size: 16px !important;
    line-height: 24px !important;
  }
}

/* ==========================================
   6. WALMART SECTION
========================================== */
@media (max-width: 991) {
  .walmart {
    padding: 60px 20px !important;
  }

  .w-container {
    max-width: 100% !important;
    padding: 0 15px !important;
  }

  .w-title {
    font-size: 28px !important;
    line-height: 36px !important;
    text-align: center !important;
    margin-bottom: 20px !important;
  }

  .w-sub {
    font-size: 15px !important;
    line-height: 24px !important;
    text-align: center !important;
    margin-bottom: 40px !important;
  }

  .w-features {
    flex-direction: column !important;
    gap: 25px !important;
  }

  .w-item {
    width: 100% !important;
    text-align: center !important;
    padding: 25px !important;
  }

  .w-ico {
    margin: 0 auto 15px !important;
    width: 70px !important;
    height: 70px !important;
  }

  .w-icon {
    width: 50px !important;
    height: 50px !important;
  }

  .w-item-title {
    font-size: 20px !important;
    margin-bottom: 12px !important;
  }

  .w-item-desc {
    font-size: 14px !important;
    line-height: 22px !important;
  }

  .w-pill {
    font-size: 15px !important;
    padding: 10px 15px !important;
    line-height: 1.5;
    margin-top: 20px !important;
    margin-bottom: 30px;
  }

  .w-glows {
    display: none !important;
  }
}

@media (max-width: 767px) {
  .walmart {
    padding: 120px 15px !important;
  }

  .w-title {
    font-size: 24px !important;
    line-height: 32px !important;
  }

  .w-sub {
    font-size: 14px !important;
    line-height: 22px !important;
  }

  .w-item {
    padding: 20px !important;
  }

  .w-ico {
    width: 60px !important;
    height: 60px !important;
  }

  .w-icon {
    width: 40px !important;
    height: 40px !important;
  }

  .w-item-title {
    font-size: 18px !important;
  }

  .w-item-desc {
    font-size: 13px !important;
  }
}

@media (max-width: 575px) {
  .w-title {
    font-size: 20px !important;
    line-height: 28px !important;
  }

  .w-pill {
    font-size: 15px !important;
    padding: 10px 15px !important;
    line-height: 1.5;
  }
}

/* ==========================================
   7. TESTIMONIALS SECTION
========================================== */
@media (max-width: 991) {
  .testi {
    padding: 60px 20px !important;
  }

  .testi__container {
    max-width: 100% !important;
    padding: 0 15px !important;
  }

  .testi__title {
    font-size: 28px !important;
    line-height: 36px !important;
    text-align: center !important;
    margin-bottom: 40px !important;
  }

  .testi__row {
    flex-direction: column !important;
    gap: 30px !important;
  }

  .testi__prev,
  .testi__next {
    position: static !important;
    width: 40px !important;
    height: 40px !important;
    order: 3 !important;
    margin: 0 auto !important;
  }

  .testi__viewport {
    width: 100% !important;
    order: 1 !important;
  }

  .testi__track {
    gap: 20px !important;
  }

  .testi__card {
    min-width: 280px !important;
    padding: 20px !important;
  }

  .testi__avatar {
    width: 50px !important;
    height: 50px !important;
  }

  .testi__name {
    font-size: 16px !important;
  }

  .testi__text {
    font-size: 14px !important;
    line-height: 22px !important;
  }

  .testi__label {
    font-size: 13px !important;
  }
}

@media (max-width: 767px) {
  .testi {
    padding: 90px 25px !important;
  }

  .testi__title {
    font-size: 24px !important;
    line-height: 32px !important;
  }

  .testi__card {
    min-width: 250px !important;
    padding: 18px !important;
  }

  .testi__text {
    font-size: 13px !important;
    line-height: 20px !important;
  }
}

@media (max-width: 575px) {
  .testi__title {
    font-size: 20px !important;
    line-height: 28px !important;
    margin: 0px 0 40px;
  }

  .testi__card {
    min-width: 230px !important;
  }
}

/* ==========================================
   8. BLOG SECTION (Homepage)
========================================== */
@media (max-width: 991) {
  .blog-section {
    padding: 60px 20px !important;
  }

  .blog-container {
    max-width: 100% !important;
    padding: 0 15px !important;
  }

  .blog-main-title {
    font-size: 32px !important;
    text-align: center !important;
    margin-bottom: 40px !important;
  }

  .blog-grid {
    grid-template-columns: 1fr !important;
    gap: 25px !important;
  }

  .blog-card {
    max-width: 100% !important;
  }

  .blog-image {
    height: 220px !important;
  }

  .blog-badge {
    font-size: 11px !important;
    padding: 6px 12px !important;
  }

  .blog-content {
    padding: 20px !important;
  }

  .blog-title {
    font-size: 20px !important;
    line-height: 28px !important;
    margin-bottom: 12px !important;
  }

  .blog-description {
    font-size: 14px !important;
    line-height: 22px !important;
    margin-bottom: 20px !important;
  }

  .blog-btn {
    font-size: 14px !important;
    padding: 10px 20px !important;
  }
}

@media (max-width: 767px) {
  .blog-section {
    padding: 90px 25px !important;
  }

  .blog-main-title {
    font-size: 26px !important;
    margin-bottom: 30px !important;
  }

  .blog-image {
    height: 200px !important;
  }

  .blog-title {
    font-size: 18px !important;
    line-height: 26px !important;
  }

  .blog-description {
    font-size: 13px !important;
    line-height: 20px !important;
  }
}

@media (max-width: 575px) {
  .blog-main-title {
    font-size: 22px !important;
  }

  .blog-image {
    height: 180px !important;
  }

  .blog-title {
    font-size: 16px !important;
  }
}

/* ==========================================
   9. DIVIDER
========================================== */
@media (max-width: 991) {
  .divider-home {
    padding: 0 20px !important;
  }

  .divider-line {
    margin: 40px 0 !important;
  }
}

@media (max-width: 767px) {
  .divider-home {
    padding: 0 15px !important;
  }

  .divider-line {
    margin: 30px 0 !important;
  }
}

/* ==========================================
   10. CONTACT SECTION
========================================== */
@media (max-width: 991) {
  .contact-section {
    padding: 60px 20px !important;
  }

  .contact-container {
    max-width: 100% !important;
    padding: 0 15px !important;
  }

  .contact-wrapper {
    flex-direction: column !important;
    gap: 40px !important;
  }

  .contact-info {
    text-align: center !important;
    margin-bottom: 0 !important;
  }

  .contact-main-title {
    font-size: 28px !important;
    line-height: 36px !important;
    margin-bottom: 15px !important;
  }

  .contact-subtitle {
    font-size: 22px !important;
    line-height: 30px !important;
    margin-bottom: 15px !important;
  }

  .contact-description {
    font-size: 15px !important;
    line-height: 24px !important;
    margin-bottom: 20px !important;
  }

  .contact-email {
    justify-content: center !important;
    font-size: 15px !important;
  }

  .mail-icon {
    width: 20px !important;
    height: 20px !important;
  }

  .contact-form-wrapper {
    width: 100% !important;
  }

  .contact-form {
    padding: 30px !important;
  }

  .form-row {
    flex-direction: column !important;
    gap: 15px !important;
  }

  .form-group {
    margin-bottom: 15px !important;
  }

  .form-group input,
  .form-group select,
  .form-group textarea {
    font-size: 14px !important;
    padding: 12px !important;
  }

  .form-submit-btn {
    width: 100% !important;
    font-size: 15px !important;
    padding: 14px !important;
  }
}

@media (max-width: 767px) {
  .contact-section {
    padding: 40px 15px !important;
  }

  .contact-main-title {
    font-size: 24px !important;
    line-height: 32px !important;
  }

  .contact-subtitle {
    font-size: 20px !important;
    line-height: 28px !important;
  }

  .contact-description {
    font-size: 14px !important;
    line-height: 22px !important;
  }

  .contact-email {
    font-size: 14px !important;
  }

  .contact-form {
    padding: 25px !important;
  }

  .form-group input,
  .form-group select,
  .form-group textarea {
    font-size: 13px !important;
  }
}

@media (max-width: 575px) {
  .contact-main-title {
    font-size: 26px !important;
    line-height: 28px !important;
  }

  .contact-subtitle {
    font-size: 18px !important;
    line-height: 26px !important;
  }

  .contact-form {
    padding: 20px !important;
  }

  .form-submit-btn {
    font-size: 14px !important;
  }
}

/* ==========================================
   11. FOOTER
========================================== */
@media (max-width: 991) {
  .footer {
    padding: 50px 20px 30px !important;
  }

  .footer__wrap {
    max-width: 100%;
    margin: 0 auto;
    padding: 10px;
    text-align: center;
  }

  .footer__grid {
    grid-template-columns: 1fr !important;
    gap: 35px !important;
    text-align: center !important;
  }

  .footer__col {
    text-align: center !important;
  }

  .start__footer {
    text-align: center !important;
    margin: auto;
    padding: 0 !important;
  }

  .footer__brand {
    font-size: 22px !important;
    margin-bottom: 12px !important;
  }

  .footer__lead {
    font-size: 14px !important;
    line-height: 22px !important;
  }

  .footer__head {
    font-size: 16px !important;
    margin-bottom: 15px !important;
  }

  .footer__list {
    text-align: center !important;
  }

  .footer__list li {
    margin-bottom: 10px !important;
  }

  .footer__list a {
    font-size: 14px !important;
  }

  .footer__social {
    justify-content: center !important;
    gap: 15px !important;
    margin-top: 15px !important;
  }

  .footer__soc {
    width: 35px !important;
    height: 35px !important;
  }

  .footer__partners {
    text-align: center !important;
    margin-top: 40px !important;
  }

  .footer__partners-title {
    font-size: 16px !important;
    margin-bottom: 20px !important;
  }

  .footer__logos {
    justify-content: center !important;
    flex-wrap: wrap !important;
    gap: 20px !important;
  }

  .footer__logos img {
    max-width: 80px !important;
    height: auto !important;
  }

  .footer__divider {
    margin: 35px 0 25px !important;
  }

  .footer__bottom {
    flex-direction: column !important;
    gap: 25px !important;
    text-align: center !important;
  }

  .footer__links {
    flex-direction: column !important;
    gap: 12px !important;
    text-align: center !important;
  }

  .footer__links li {
    margin: 0 !important;
  }

  .footer__links a {
    font-size: 13px !important;
  }

  .footer__copy {
    font-size: 13px !important;
    line-height: 20px !important;
    text-align: center !important;
  }
}

@media (max-width: 767px) {
  .footer__bottom {
    flex-direction: column;
    align-items: center;
    display: flex;
    justify-content: center;
    align-content: center;
  }
  .footer__links a {
    font-size: 13px !important;
  }

  .footer__links {
    display: flex;
    flex-wrap: wrap;
    gap: 18px;
    list-style: none;
    padding: 0;
    margin: 0;
    flex-direction: column;
    font-size: 16px;
  }

  .footer__wrap {
    max-width: 100%;
    margin: 0 auto;
    padding: 10px;
    text-align: center;
  }
  .footer__social {
    display: flex;
    gap: 20px;
    margin-top: 10px;
    align-content: center;
    justify-content: center;
    align-items: center;
  }

  .start__footer {
    padding: inherit;
  }
  .footer {
    padding: 40px 15px 25px !important;
  }

  .footer__brand {
    font-size: 20px !important;
  }

  .footer__lead {
    font-size: 13px !important;
  }

  .footer__head {
    font-size: 15px !important;
  }

  .footer__list a {
    font-size: 13px !important;
  }

  .footer__logos img {
    max-width: 70px !important;
  }
}

@media (max-width: 575px) {
  .footer__brand {
    font-size: 18px !important;
  }

  .footer__lead {
    font-size: 12px !important;
  }

  .footer__copy {
    font-size: 12px !important;
  }
}

/* ==========================================
   12. BLOG HERO SECTION
========================================== */
@media (max-width: 1200px) {
  .blog-hero-section .container-fluid {
    padding-left: 100px !important;
    padding-right: 100px !important;
  }
}

@media (max-width: 991) {
  .blog-hero-section {
    padding: 60px 0 !important;
    min-height: auto !important;
  }

  .blog-hero-section .container-fluid {
    padding-left: 30px !important;
    padding-right: 30px !important;
  }

  .blog-hero-section .row {
    grid-template-columns: 1fr !important;
    gap: 30px !important;
    text-align: center !important;
  }

  .blog-hero-title {
    font-size: 36px !important;
    line-height: 44px !important;
    white-space: normal !important;
  }

  .blog-hero-subtitle {
    font-size: 18px !important;
    line-height: 26px !important;
    max-width: 100% !important;
  }

  .blog-hero-icon {
    width: 200px !important;
    height: 200px !important;
    margin: 0 auto !important;
  }

  .blog-hero-section .text-end {
    justify-content: center !important;
  }
}

@media (max-width: 767px) {
  .blog-hero-section {
    padding: 40px 0 !important;
  }

  .blog-hero-section .container-fluid {
    padding-left: 20px !important;
    padding-right: 20px !important;
  }

  .blog-hero-title {
    font-size: 28px !important;
    line-height: 36px !important;
  }

  .blog-hero-subtitle {
    font-size: 16px !important;
    line-height: 24px !important;
  }

  .blog-hero-icon {
    width: 160px !important;
    height: 160px !important;
  }
}

@media (max-width: 575px) {
  .blog-hero-title {
    font-size: 24px !important;
    line-height: 32px !important;
  }

  .blog-hero-subtitle {
    font-size: 14px !important;
    line-height: 22px !important;
  }

  .blog-hero-icon {
    width: 140px !important;
    height: 140px !important;
  }
}

/* ==========================================
   13. FEATURED BLOGS SECTION
========================================== */
@media (max-width: 1200px) {
  .featured-blogs-section .container-fluid {
    padding-left: 50px !important;
    padding-right: 50px !important;
  }
}

@media (max-width: 991) {
  .featured-blogs-section {
    padding: 50px 0 40px !important;
  }

  .featured-blogs-section .container-fluid {
    padding-left: 30px !important;
    padding-right: 30px !important;
  }

  .featured-blogs-title {
    font-size: 32px !important;
    line-height: 40px !important;
    text-align: center !important;
    margin-bottom: 30px !important;
  }

  .featured-blogs-section .row {
    row-gap: 20px !important;
    column-gap: 20px !important;
  }

  .featured-blog-card {
    height: 140px !important;
  }

  .featured-blog-image {
    width: 110px !important;
    min-width: 110px !important;
    height: 140px !important;
  }

  .featured-blog-content {
    padding: 18px 15px !important;
  }

  .featured-blog-card-title {
    font-size: 15px !important;
    line-height: 22px !important;
    -webkit-line-clamp: 4 !important;
  }
}

@media (max-width: 767px) {
  .featured-blog-content {
    padding: 15px 12px !important;
  }
  .featured-blog-content {
    padding: 10px;
    display: flex !important;
    flex-direction: column;
    align-content: center;
    justify-content: center;
    align-items: center;
  }
  .featured-blogs-section {
    padding: 40px 0 30px !important;
  }

  .featured-blogs-section .container-fluid {
    padding-left: 20px !important;
    padding-right: 20px !important;
  }

  .featured-blogs-title {
    font-size: 26px !important;
    line-height: 34px !important;
    margin-bottom: 25px !important;
  }

  .featured-blogs-section .row {
    row-gap: 15px !important;
  }

  .featured-blog-card {
    .featured-blog-card {
      display: flex !important;
      flex-direction: row !important;
      align-items: stretch !important;
      gap: 14px !important;
      border-radius: 14px !important;
      overflow: hidden !important;
      background: #ffffff !important;
      border: 1px solid #edf0f4 !important;
      width: 285px;
    }
  }

  .featured-blog-image {
    width: 100px !important;
    min-width: 100px !important;
    height: 130px !important;
  }

  .featured-blog-card-title {
    font-size: 14px !important;
    line-height: 20px !important;
  }
}

@media (max-width: 575px) {
  .featured-blogs-title {
    font-size: 22px !important;
    line-height: 30px !important;
  }

  .featured-blog-card {
    height: 120px !important;
    width: 100%;
  }

  .featured-blog-image {
    width: 90px !important;
    min-width: 90px !important;
    height: 120px !important;
  }

  .featured-blog-card-title {
    font-size: 13px !important;
    line-height: 19px !important;
  }
}

/* ==========================================
   14. GENERAL UTILITIES
========================================== */
@media (max-width: 991) {
  br {
    display: none !important;
  }

  .container,
  .container-fluid {
    padding-left: 20px !important;
    padding-right: 20px !important;
  }

  img {
    max-width: 100% !important;
    height: auto !important;
  }
}

@media (max-width: 767px) {
  .container,
  .container-fluid {
    padding-left: 15px !important;
    padding-right: 15px !important;
  }
}

/* ==========================================
   15. HIDE/SHOW ELEMENTS
========================================== */
@media (max-width: 767px) {
  .hide-mobile {
    display: none !important;
  }
}

@media (min-width: 768px) {
  .show-mobile {
    display: none !important;
  }

  .featured-blog-link {
    display: flex !important;
    flex: 1 1 auto !important;
    text-decoration: none !important;
    color: inherit !important;
    flex-wrap: nowrap;
    align-content: center;
    align-items: stretch;
    justify-content: center;
  }
}

/* ==========================================
   BLOG SAYFASI – MOBİL DÜZEN
   (blog-hero, featured, son bloglar, bottom CTA)
========================================== */

/* 1) Ortak container düzeni */
@media (max-width: 991px) {
  .container-hero-custom {
    max-width: 100% !important;
    padding-left: 20px !important;
    padding-right: 20px !important;
  }
}

/* ==========================================
   2) BLOG HERO SECTION
========================================== */
@media (max-width: 991px) {
  .blog-hero-section {
    padding: 40px 0 30px !important;
  }

  .blog-hero-section .row {
    align-items: center !important;
  }

  .blog-hero-title {
    font-size: 32px !important;
    line-height: 40px !important;
    margin-bottom: 10px !important;
  }

  .blog-hero-subtitle {
    font-size: 16px !important;
    line-height: 24px !important;
    margin-bottom: 0 !important;
  }

  .blog-hero-icon {
    max-width: 180px !important;
    height: auto !important;
  }
}

@media (max-width: 767px) {
  .blog-hero-section {
    padding: 32px 0 26px !important;
  }

  .blog-hero-title {
    font-size: 26px !important;
    line-height: 34px !important;
    text-align: left !important;
  }

  .blog-hero-subtitle {
    font-size: 15px !important;
    line-height: 23px !important;
    text-align: left !important;
    margin-bottom: 18px !important;
  }

  .blog-hero-section .text-end {
    text-align: left !important;
    margin-top: 8px !important;
  }

  .blog-hero-icon {
    max-width: 140px !important;
  }
}

@media (max-width: 575px) {
  .blog-hero-section {
    padding: 28px 38px 14px 20px !important;
  }

  .blog-hero-title {
    font-size: 24px !important;
    line-height: 32px !important;
  }
}

/* ==========================================
   3) FEATURED BLOGS SECTION (Önde çıkan)
========================================== */
@media (max-width: 991px) {
  .featured-blogs-section {
    padding: 32px 0 24px !important;
  }

  .featured-blogs-title {
    font-size: 24px !important;
    line-height: 32px !important;
    text-align: left !important;
    margin-bottom: 20px !important;
  }

  .featured-blogs-grid {
    display: grid !important;
    grid-template-columns: 1fr !important;
    row-gap: 16px !important;
  }

  .featured-blog-card {
    display: flex !important;
    flex-direction: row !important;
    align-items: stretch !important;
    gap: 14px !important;
    border-radius: 14px !important;
    overflow: hidden !important;
    background: #ffffff !important;
    border: 1px solid #edf0f4 !important;
  }

  .featured-blog-link {
    display: flex !important;
    flex: 1 1 auto !important;
    text-decoration: none !important;
    color: inherit !important;
  }

  .featured-blog-image {
    flex: 0 0 110px !important;
    max-width: 110px !important;
    height: 100px !important;
    overflow: hidden !important;
  }

  .featured-blog-image img {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
    display: block !important;
  }

  .featured-blog-content {
    padding: 20px !important;
    display: flex !important;
    align-items: center;
    flex-direction: column;
    flex-wrap: nowrap;
    align-content: center;
    justify-content: center;
  }

  .featured-blog-heading {
    font-size: 14px !important;
    line-height: 20px !important;
    margin: 0 !important;
    display: -webkit-box !important;
    -webkit-line-clamp: 3 !important;
    -webkit-box-orient: vertical !important;
    overflow: hidden !important;
  }
}

@media (max-width: 575px) {
  .featured-blog-card {
    gap: 12px !important;
  }

  .featured-blog-image {
    flex-basis: 95px !important;
    max-width: 95px !important;
    height: 90px !important;
  }

  .featured-blog-heading {
    font-size: 13px !important;
    line-height: 19px !important;
  }
}

/* ==========================================
   4) SON BLOGLAR BÖLÜMÜ (Search + Grid)
========================================== */
@media (max-width: 991px) {
  .blg-rvmp-section-wrapper {
    padding-top: 32px !important;
    padding-bottom: 40px !important;
  }

  .blg-rvmp-title {
    font-size: 22px !important;
    line-height: 30px !important;
    margin-bottom: 16px !important;
  }

  /* Arama alanı */
  .blg-rvmp-search-outer {
    padding: 10px !important;
  }

  .blg-rvmp-search-inner {
    position: relative !important;
    border-radius: 999px !important;
    padding: 8px 40px 8px 14px !important;
    border: 1px solid #dde3ec !important;
    background: #ffffff !important;
  }

  .blg-rvmp-input {
    width: 100% !important;
    border: none !important;
    outline: none !important;
    font-size: 14px !important;
  }

  .blg-rvmp-search-icon {
    position: absolute !important;
    right: 14px !important;
    top: 50% !important;
    transform: translateY(-50%) !important;
    width: 18px !important;
    height: 18px !important;
  }

  /* Kategori butonları */
  .blg-rvmp-section-wrapper .d-flex.gap-3 {
    row-gap: 10px !important;
    column-gap: 10px !important;
  }

  .blg-rvmp-filter-btn {
    font-size: 13px !important;
    padding: 8px 14px !important;
    border-radius: 999px !important;
    white-space: nowrap !important;
  }

  /* Kart grid */
  .blg-rvmp-row {
    row-gap: 20px !important;
  }

  .blg-rvmp-card-link {
    text-decoration: none !important;
    color: inherit !important;
    display: block !important;
    height: 100% !important;
  }

  .blg-rvmp-card {
    height: 100% !important;
    border-radius: 16px !important;
    overflow: hidden !important;
    border: 1px solid #edf0f4 !important;
    background: #ffffff !important;
    display: flex !important;
    flex-direction: column !important;
    transition: transform 0.18s ease, box-shadow 0.18s ease !important;
  }

  .blg-rvmp-card-img-wrapper {
    height: 180px !important;
    overflow: hidden !important;
  }

  .blg-rvmp-img {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
    display: block !important;
  }

  .blg-rvmp-card-body {
    padding: 14px 16px 16px !important;
    display: flex !important;
    flex-direction: column !important;
    gap: 6px !important;
  }

  .blg-rvmp-category {
    font-size: 12px !important;
    text-transform: uppercase !important;
    letter-spacing: 0.04em !important;
  }

  .blg-rvmp-card-title {
    font-size: 15px !important;
    line-height: 22px !important;
    margin: 0 !important;
    display: -webkit-box !important;
    -webkit-line-clamp: 3 !important;
    -webkit-box-orient: vertical !important;
    overflow: hidden !important;
  }

  .blg-rvmp-card-footer {
    margin-top: 6px !important;
    font-size: 13px !important;
    gap: 6px !important;
  }

  .blg-rvmp-calendar-icon {
    width: 16px !important;
    height: 16px !important;
  }

  /* Pagination */
  .blg-rvmp-pagination {
    margin-top: 26px !important;
    display: flex !important;
    flex-wrap: wrap !important;
    justify-content: center !important;
    gap: 8px !important;
  }

  .blg-rvmp-page-item {
    min-width: 34px !important;
    height: 34px !important;
    border-radius: 999px !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    padding: 0 12px !important;
    font-size: 13px !important;
    border: 1px solid #dde3ec !important;
    cursor: pointer !important;
    background: #ffffff !important;
  }

  .blg-rvmp-page-active {
    background: #1f57ff !important;
    color: #ffffff !important;
    border-color: #1f57ff !important;
  }

  .blg-rvmp-page-dots {
    border: none !important;
    background: transparent !important;
    cursor: default !important;
  }
}

@media (max-width: 575px) {
  .blg-rvmp-card-img-wrapper {
    height: 160px !important;
  }

  .blg-rvmp-card-title {
    font-size: 14px !important;
    line-height: 20px !important;
  }

  .pricing-badge {
    position: absolute;
    top: -8px;
    right: 255px;
    z-index: 10;
    left: -18px;
    width: 210px;
  }
}

/* ==========================================
   5) BOTTOM CTA (Abone Ol)
========================================== */
@media (max-width: 991px) {
  .bottom-cta {
    display: flex !important;
    flex-direction: row !important;
    align-items: center !important;
    justify-content: space-between !important;
    gap: 16px !important;
    padding: 14px 20px !important;
    background: #0f172a !important;
    color: #ffffff !important;
    flex-wrap: wrap !important;
  }

  .bottom-cta span {
    font-size: 14px !important;
    line-height: 22px !important;
    flex: 1 1 220px !important;
  }

  .bottom-button-cta {
    white-space: nowrap !important;
    padding: 10px 20px !important;
    font-size: 14px !important;
  }
}

@media (max-width: 575px) {
  .bottom-cta {
    flex-direction: column !important;
    align-items: stretch !important;
    text-align: left !important;
  }

  .bottom-cta span {
    flex: 0 0 auto !important;
  }

  .bottom-button-cta {
    width: 100% !important;
    text-align: center !important;
  }
}

/* ===============================
   WHY CHOOSE US - MOBILE FIX
   (Neden Bizi Tercih Etmelisiniz?)
=================================*/
@media (max-width: 991px) {
  body {
    overflow-x: hidden !important;
  }

  .why-choose-section {
    padding: 50px 0 !important;
    overflow-x: hidden !important;
  }

  .why-choose-container {
    max-width: 100% !important;
    padding: 0 16px !important;
    margin: 0 auto !important;
    box-sizing: border-box !important;
  }

  .why-choose-title {
    font-size: 24px !important;
    line-height: 32px !important;
    margin-bottom: 24px !important;
    text-align: left !important;
  }

  /* Grid’i tek kolona düşür */
  .why-choose-grid {
    display: flex !important;
    flex-direction: column !important;
    gap: 18px !important;
  }

  .why-choose-left,
  .why-choose-right {
    width: 100% !important;
    display: flex !important;
    flex-direction: column !important;
    gap: 16px !important;
  }

  /* Kartlar */
  .why-choose-item {
    width: 100% !important;
    box-sizing: border-box !important;
    padding: 16px 18px !important;
    background: #ffffff !important;
    border-radius: 14px !important;
    box-shadow: 0 8px 20px rgba(15, 23, 42, 0.08) !important;
    margin: 0 auto !important;
  }

  .why-choose-item-title {
    font-size: 16px !important;
    margin-bottom: 8px !important;
  }

  .why-choose-item-desc {
    font-size: 14px !important;
    line-height: 21px !important;
    margin: 0 !important;
  }

  /* Görseller – tam genişlik, taşma yok */
  .why-choose-image,
  .why-choose-image-top,
  .why-choose-image-bottom {
    position: static !important;
    width: 100% !important;
    max-width: 100% !important;
    margin: 4px 0 14px !important;
    border-radius: 16px !important;
    overflow: hidden !important;
  }

  .why-choose-image img,
  .why-choose-image-top img,
  .why-choose-image-bottom img {
    display: block !important;
    width: 100% !important;
    height: auto !important;
    max-width: 100% !important;
  }

  /* Eğer desktop’ta absolute konumlama varsa sıfırla */
  .chooseImage1,
  .chooseImage2,
  .chooseImage3 {
    position: static !important;
    top: auto !important;
    left: auto !important;
    right: auto !important;
    transform: none !important;
  }

  input#lastName {
    margin-bottom: 30px;
  }
}

@media (max-width: 575px) {
  .why-choose-title {
    font-size: 22px !important;
    line-height: 30px !important;
  }

  .why-choose-item {
    padding: 14px 14px !important;
  }

  .why-choose-item-title {
    font-size: 15px !important;
  }

  .why-choose-item-desc {
    font-size: 13px !important;
    line-height: 20px !important;
  }

  input#lastName {
    margin-bottom: 30px;
  }

  .service-icon {
    width: 75px !important;
    height: 75px !important;
  }

  .custom-blog-new-container {
    width: 95% !important;
  }
}

@media screen and (min-width: 1570px) and (max-width: 1701px) {
  .road-shape {
    position: absolute;
    top: 100px !important;
    left: 48% !important;
    transform: translateX(-50%) scale(0.9) !important;
    height: 1650px;
    z-index: 1;
    opacity: 1;
  }

  .step.step2 {
    margin-left: 220px;
    margin-top: 65px !important;
  }

  .step.step3 {
    margin-right: 220px;
    margin-top: -110px;
    width: 1050px;
  }

  .step.step4 {
    width: 1090px;
    margin-top: -107px;
    margin-left: 125px;
  }

  .footer__wrap {
    max-width: 1600px;
    margin: 0 auto;
    padding: 64px 24px 28px;
    transform: scale(0.9);
  }

  .navbar-nav {
    gap: 0px;
  }
  .navbar-nav .nav-item:nth-child(1) {
    margin-right: 47px;
  }

  .navbar-nav .nav-item:nth-child(4) {
    margin-right: 37px;
  }

  .navbar-nav .nav-item:nth-child(3) {
    margin-right: 37px;
  }
  button.btn.btn-form-doldur {
    transform: scale(0.8);
  }
  .hero-container .row.align-items-center {
    transform: scale(0.9);
  }

  .hero-container {
    height: 30%;
  }

  .hero-background {
    margin-top: -70px;
  }
}

/* Bu kural, sadece 992px (Tablet) ile 1536px arasındaki ekranlara uygulanacaktır.
   (Böylece mobil ve küçük tabletler bu karmaşık CSS'ten korunur.) */
@media screen and (min-width: 992px) and (max-width: 1500px) {
  button.btn.btn-form-doldur {
    transform: scale(0.8);
  }
  /* ... Mevcut kodlarınız buraya gelecek ... */

  /* 1. ADIM: Kenar boşluklarını azaltalım */
  .walmart-blog-wrapper .container-custom {
    padding: 0 20px !important;
  }

  /* 2. ADIM: Başlık fontunu biraz küçültelim */
  .walmart-blog-wrapper h1 {
    font-size: 2.5rem !important;
    line-height: 1.2 !important;
    word-wrap: break-word;
  }

  /* 3. ADIM (Gerekirse): Düzenin esnekliğini kontrol edelim */
  .row,
  .d-flex {
    flex-wrap: wrap !important;
  }

  .navbar-nav {
    gap: 0px !important;
  }

  /* Mutlak konumlandırmalı adımlar sadece bu aralıkta çalışır */
  .road-shape {
    position: absolute;
    top: 100px !important;
    left: 28% !important;
    transform: translateX(-50%) scale(0.9) !important;
    height: 1650px;
    z-index: 1;
    opacity: 1;
  }

  .step2 img.icon {
    margin-left: -180px;
  }

  .step {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 890px;
    margin: 80px auto;
    z-index: 2;
  }

  .step.step2 {
    margin-left: 290px;
    margin-top: 65px !important;
  }

  .step.step3 {
    margin-right: 300px;
    margin-top: 10px;
    width: 980px;
  }

  .step.step4 {
    width: 990px;
    margin-top: -10px;
    margin-left: 145px;
  }

  .section-end {
    margin-top: 127px;
    margin-bottom: -10px;
  }
}

/* ABD hizmetler görselli alan */
.why-us-row-1 .why-us-image-right img {
  width: 60%;
  object-fit: contain;
  margin-top: 50px;
}

.why-us-image-right {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  align-content: center;
  justify-content: center;
  align-items: center;
  height: 250px !important;
}

.why-us-row-2 .why-us-image-left-horizontal img {
  width: 60%;
  object-fit: contain;
}

.why-us-image-left-horizontal {
  display: flex;
  justify-content: center;
  align-items: center;
  align-content: center;
  flex-wrap: nowrap;
}

.why-us-row-3 .why-us-image-right-horizontal img {
  width: 65%;
  object-fit: contain;
  margin-top: 125px;
}

.why-us-image-right-horizontal {
  display: flex;
  align-items: center;
  justify-content: center;
  align-content: center;
}

.why-us-row-4 .why-us-image-left img {
  width: 65%;
  object-fit: contain;
  margin-top: 70px;
}

.why-us-image-left {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  align-content: center;
  justify-content: center;
  align-items: center;
  height: 310px !important;
}

.pricing-footer-note {
  font-family: "Inter", sans-serif;
  font-style: italic;
  font-weight: 400;
  font-size: 16px;
  text-align: center;
  line-height: 20px;
  color: #000000;
  margin: 0;
  margin-top: 100px;
  padding-left: 0;
}

@media (min-width: 768px) {
  .show-mobile {
    display: none !important;
  }
}

/*
Sadece Masaüstü Dropdown Okunu hedefleyin
*/
.nav-item .dropdown-toggle::after {
  /* Bootstrap, dropdown açıkken (aria-expanded="true") bu dönüşümü uygular.
    Bu kural ile dönüşümü sıfırlıyoruz.
    */
  transform: none !important;
  /* Ok işaretinin yönü artık menünün açık olup olmamasına bağlı kalmayacak, 
       her zaman varsayılan aşağı yönlü kalacaktır. */
}

@media screen and (min-width: 1200px) and (max-width: 1650px) {
  /* 1200px ile 1650px arasındaki laptop ekranları için özel stiller buraya gelir. */
}
