/* ================================================================
   ByBalon Organizasyon — mobile.css
   style.css'ten SONRA yüklenir. style.css'e dokunmaz.
   Breakpoints: 1024px · 768px · 640px · 480px · 375px · 320px
   ================================================================ */

/* ─── 0. GLOBAL TOUCH OPTİMİZASYONLARI ─────────────────────────── */
* {
  -webkit-tap-highlight-color: transparent;
}
a,
button,
[role="button"],
input[type="button"],
input[type="submit"],
label {
  touch-action: manipulation;
}

/* ─── 1. HEADER & NAVİGASYON ──────────────────────────────────────
   768px altı: hamburger menü, nav overlay, tam ekran nav
   ────────────────────────────────────────────────────────────────── */

/* Nav overlay (arka plan tıklama alanı) */
.nav-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
  z-index: 1000;
  backdrop-filter: blur(2px);
  -webkit-backdrop-filter: blur(2px);
}
.nav-overlay.active {
  display: block;
}

@media (max-width: 1024px) {
  .nav-link {
    padding: 8px 10px;
    font-size: .85rem;
  }
  .nav-cta {
    padding: 8px 14px;
    font-size: .85rem;
  }
}

@media (max-width: 768px) {
  /* Burger butonu: min 44×44 tap target */
  .nav-burger {
    min-width: 44px;
    min-height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px;
    border-radius: 10px;
    margin-left: auto;
  }

  /* Açık mobil menü: sola dayalı iç öğeler */
  .main-nav.open {
    padding: 80px 16px 100px;
  }

  /* Nav linkleri — tam genişlik, büyük tap target */
  .main-nav .nav-link {
    padding: 13px 16px;
    font-size: .95rem;
    border-radius: 12px;
    min-height: 44px;
    display: flex;
    align-items: center;
  }

  /* Nav CTA butonu — tam genişlik */
  .main-nav .nav-cta {
    width: 100%;
    justify-content: center;
    margin-top: 8px;
    padding: 14px 20px;
    font-size: .95rem;
    min-height: 48px;
  }

  /* Dropdown sarmalayıcı */
  .nav-drop-wrap {
    width: 100%;
  }
  .nav-drop-toggle {
    width: 100%;
    text-align: left;
    justify-content: space-between;
    padding: 13px 16px;
    min-height: 44px;
    font-size: .95rem;
  }

  /* Dropdown list öğeleri — büyük tap target */
  .nav-dropdown {
    margin: 4px 0 4px 8px;
    border-radius: 12px;
  }
  .nav-dropdown li a {
    padding: 12px 16px;
    min-height: 44px;
    display: flex;
    align-items: center;
    font-size: .9rem;
  }

  /* Header yüksekliği küçük ekranda */
  .hdr-inner {
    min-height: 56px;
    padding: 6px 0;
  }
  body {
    padding-top: 60px;
  }
}

@media (max-width: 375px) {
  .logo img {
    height: 36px;
    max-width: 140px;
  }
  body {
    padding-top: 56px;
  }
}

/* ─── 2. INDEX HERO (byb-hero) ────────────────────────────────────
   .byb-hero, .byb-hero__inner, .byb-hero__content, .byb-hero__cards
   ────────────────────────────────────────────────────────────────── */

@media (max-width: 768px) {
  .byb-hero {
    min-height: 100svh;
    padding: 80px 0 40px;
  }
  .byb-hero__inner {
    flex-direction: column !important;
    gap: 24px;
    padding-top: 10px;
  }
  .byb-hero__content {
    text-align: center;
  }
  .byb-hero__title {
    font-size: clamp(2rem, 8vw, 2.8rem) !important;
  }
  .byb-hero__sub {
    font-size: .95rem;
    max-width: 100%;
  }
  .byb-hero__btns {
    display: grid !important;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    justify-items: stretch;
  }
  .byb-btn {
    width: 100%;
    justify-content: center;
    min-height: 44px;
    padding: 11px 14px;
    font-size: .82rem;
  }
  .byb-hero__stats {
    justify-content: center;
    flex-wrap: wrap;
    gap: 12px;
  }
  .byb-hero__stat-sep {
    display: none;
  }
  .byb-hero__cards {
    display: grid !important;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
    width: 100%;
  }
  .byb-hcard {
    padding: 14px 8px;
    font-size: .78rem;
    border-radius: 14px;
  }
  .byb-hcard__icon {
    font-size: 1.6rem;
  }
}

@media (max-width: 480px) {
  .byb-hero__btns {
    grid-template-columns: 1fr 1fr;
  }
  .byb-hero__cards {
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
  }
  .byb-hcard__name {
    font-size: .7rem;
  }
}

@media (max-width: 375px) {
  .byb-hero {
    padding: 70px 0 36px;
  }
  .byb-hero__title {
    font-size: clamp(1.7rem, 7.5vw, 2.2rem) !important;
  }
  .byb-hero__btns {
    grid-template-columns: 1fr 1fr;
    gap: 8px;
  }
  .byb-btn {
    font-size: .78rem;
    padding: 10px 10px;
  }
  .byb-hero__cards {
    grid-template-columns: repeat(3, 1fr);
    gap: 6px;
  }
  .byb-hcard {
    padding: 10px 4px;
  }
  .byb-hcard__icon {
    font-size: 1.4rem;
  }
  .byb-hcard__name {
    font-size: .65rem;
  }
}

@media (max-width: 320px) {
  .byb-hero__btns {
    grid-template-columns: 1fr;
  }
  .byb-hero__cards {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* ─── 3. HERO SLIDER (slide-*, .hero-slider) ─────────────────────
   Birden fazla kez tanımlanmış; en spesifik override.
   ────────────────────────────────────────────────────────────────── */

@media (max-width: 768px) {
  .hero-slider {
    height: 72vh;
    min-height: 440px;
  }
  .slide-content {
    padding: 0 16px;
  }
  .slide-inner {
    max-width: 100%;
    padding: 0;
  }
  .slide-title {
    font-size: clamp(1.6rem, 5.5vw, 2.4rem) !important;
  }
  .slide-desc {
    font-size: .9rem;
    max-width: 100%;
    margin-bottom: 20px;
  }
  .slide-btns {
    gap: 10px;
  }
  .slide-btns .btn {
    min-height: 44px;
  }
  .slider-prev {
    left: 8px;
  }
  .slider-next {
    right: 8px;
  }
  .slider-prev,
  .slider-next {
    width: 40px;
    height: 40px;
  }
}

@media (max-width: 480px) {
  .hero-slider {
    height: 68vh;
    min-height: 400px;
  }
  .slide-title {
    font-size: clamp(1.4rem, 5vw, 1.9rem) !important;
  }
  .slide-badge {
    font-size: .65rem;
    padding: 5px 12px;
  }
  .slide-btns .btn {
    padding: 10px 16px;
    font-size: .82rem;
  }
  .slider-dots {
    bottom: 18px;
  }
}

@media (max-width: 375px) {
  .hero-slider {
    height: 64vh;
    min-height: 360px;
  }
  .slide-title {
    font-size: clamp(1.3rem, 5.5vw, 1.7rem) !important;
    line-height: 1.2;
  }
  .slide-desc {
    font-size: .82rem;
    line-height: 1.55;
  }
  /* Ok butonlarını gizle, parmak kaydırma yeterli */
  .slider-prev,
  .slider-next {
    display: none;
  }
  .slider-counter {
    display: none;
  }
}

@media (max-width: 320px) {
  .hero-slider {
    height: 60vh;
    min-height: 320px;
  }
  .slide-content {
    padding: 0 12px;
  }
  .slide-btns {
    flex-direction: column;
    align-items: stretch;
  }
  .slide-btns .btn {
    width: 100%;
    justify-content: center;
  }
}

/* ─── 4. HİZMET KARTLARI (services-grid) ─────────────────────────
   ────────────────────────────────────────────────────────────────── */

@media (max-width: 768px) {
  .services-section {
    padding: 56px 0;
  }
  .services-grid {
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 16px;
  }
}

@media (max-width: 480px) {
  .services-grid {
    grid-template-columns: 1fr 1fr;
    gap: 12px;
  }
  .service-card__body {
    padding: 14px 14px 16px;
  }
  .service-card__title {
    font-size: .88rem;
  }
  .service-card__desc {
    font-size: .76rem;
    -webkit-line-clamp: 2;
  }
  .service-card__link {
    font-size: .78rem;
  }
}

@media (max-width: 375px) {
  .services-grid {
    grid-template-columns: 1fr 1fr;
    gap: 10px;
  }
  .service-card__body {
    padding: 12px 12px 14px;
  }
  .service-card__icon {
    font-size: 1.3rem;
    margin-bottom: 4px;
  }
  .service-card__title {
    font-size: .82rem;
    margin-bottom: 4px;
  }
}

@media (max-width: 320px) {
  .services-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }
  .service-card__body {
    padding: 16px 16px 18px;
  }
}

/* ─── 5. STATS (stats-section, stats-grid) ───────────────────────
   ────────────────────────────────────────────────────────────────── */

@media (max-width: 768px) {
  .stats-section {
    padding: 56px 0;
  }
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .stat-item {
    padding: 28px 16px;
    border-right: none;
    border-bottom: 1px solid rgba(0, 229, 255, 0.1);
  }
  .stat-item:nth-child(2n)::after {
    display: none;
  }
}

@media (max-width: 480px) {
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .stat-num {
    font-size: clamp(2rem, 8.5vw, 2.8rem) !important;
  }
  .stat-icon {
    font-size: 1.6rem;
    margin-bottom: 8px;
  }
  .stat-label {
    font-size: .75rem;
  }
  .stat-sublabel {
    font-size: .68rem;
  }
}

@media (max-width: 375px) {
  .stat-item {
    padding: 22px 12px;
  }
  .stat-num {
    font-size: clamp(1.8rem, 8vw, 2.4rem) !important;
  }
}

@media (max-width: 320px) {
  .stats-grid {
    grid-template-columns: 1fr;
  }
  .stat-item {
    border-bottom: 1px solid rgba(0, 229, 255, 0.1);
    border-right: none;
    padding: 20px 16px;
  }
  .stat-item:last-child {
    border-bottom: none;
  }
}

/* ─── 6. GALERİ GRID (gallery-grid, gallery-item) ───────────────
   ────────────────────────────────────────────────────────────────── */

@media (max-width: 768px) {
  .gallery-grid {
    grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
    gap: 8px;
  }
  .auto-gallery-section {
    padding-bottom: 56px;
  }
  .agal-main-wrap {
    height: 240px;
  }
  .agal-btn {
    width: 40px;
    height: 40px;
    min-width: 44px;
    min-height: 44px;
  }
}

@media (max-width: 480px) {
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 8px;
  }
  .gallery-item {
    border-radius: 10px;
  }
  .gal-thumb {
    width: 56px;
    height: 42px;
  }
}

@media (max-width: 375px) {
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 6px;
  }
  .agal-main-wrap {
    height: 200px;
  }
  .agal-prev {
    left: 6px;
  }
  .agal-next {
    right: 6px;
  }
}

/* ─── 7. BLOG KARTLARI & FİLTRE ─────────────────────────────────
   .blog-grid, .blog-card, .blog-filter-bar, .blog-filter-v2
   ────────────────────────────────────────────────────────────────── */

@media (max-width: 768px) {
  .blog-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  /* Blog filtresi — touch-friendly select */
  .blog-filter-bar {
    position: static;
    box-shadow: none;
  }
  .blog-filter-bar__inner {
    flex-direction: column;
    gap: 12px;
  }
  .blog-filter-group {
    min-width: 100%;
    width: 100%;
  }
  .blog-filter-select {
    min-height: 48px;
    font-size: 16px;
    padding: 12px 14px;
    width: 100%;
  }
  .blog-filter-reset {
    min-height: 48px;
    font-size: .9rem;
    width: 100%;
    text-align: center;
  }
  /* Blog v2 filtre */
  .blog-filter-v2 {
    padding: 16px;
  }
  .blog-search-wrap {
    width: 100%;
  }
  .blog-search-input {
    font-size: 16px;
    min-height: 48px;
    width: 100%;
    padding: 12px 14px;
  }
  .blog-search-btn {
    min-height: 48px;
    min-width: 60px;
  }
  .blog-filter-row {
    flex-direction: column;
    gap: 10px;
  }
  .blog-filter-group label {
    font-size: .82rem;
  }
}

@media (max-width: 480px) {
  .blog-card__body {
    padding: 16px;
  }
  .blog-card__title {
    font-size: .95rem;
  }
  .blog-card__excerpt {
    font-size: .82rem;
    -webkit-line-clamp: 2;
  }
}

@media (max-width: 375px) {
  .blog-card__body {
    padding: 14px;
  }
  .blog-card__cat {
    font-size: .65rem;
  }
  .blog-card__meta {
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
    font-size: .72rem;
  }
}

/* ─── 8. NEDEN BYBALON (why-grid, why-card) ──────────────────────
   ────────────────────────────────────────────────────────────────── */

@media (max-width: 900px) {
  .why-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }
}

@media (max-width: 480px) {
  .why-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }
  .why-card {
    padding: 20px 14px 18px;
  }
  .why-icon-wrap {
    width: 60px;
    height: 60px;
    margin-bottom: 14px;
  }
  .why-icon-wrap svg {
    width: 28px;
    height: 28px;
  }
  .why-title {
    font-size: .88rem;
  }
  .why-desc {
    font-size: .78rem;
    line-height: 1.5;
  }
}

@media (max-width: 375px) {
  .why-grid {
    gap: 8px;
  }
  .why-card {
    padding: 16px 10px 14px;
  }
  .why-icon-wrap {
    width: 50px;
    height: 50px;
  }
  .why-icon-wrap svg {
    width: 22px;
    height: 22px;
  }
  .why-title {
    font-size: .82rem;
  }
  .why-desc {
    font-size: .72rem;
  }
}

@media (max-width: 320px) {
  .why-grid {
    grid-template-columns: 1fr;
  }
  .why-card {
    padding: 20px 16px;
    text-align: left;
    display: flex;
    align-items: flex-start;
    gap: 14px;
  }
  .why-icon-wrap {
    flex-shrink: 0;
    margin: 0;
  }
}

/* ─── 9. NASIL ÇALIŞIYORUZ (hiw-steps, hiw-step) ─────────────────
   ────────────────────────────────────────────────────────────────── */

@media (max-width: 900px) {
  .hiw-section {
    padding: 60px 0;
  }
  .hiw-steps {
    grid-template-columns: repeat(2, 1fr);
    gap: 36px 20px;
  }
  .hiw-steps::before {
    display: none;
  }
}

@media (max-width: 480px) {
  .hiw-steps {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px 12px;
  }
  .hiw-step__icon {
    width: 72px;
    height: 72px;
    margin-bottom: 14px;
  }
  .hiw-step__icon svg {
    width: 34px;
    height: 34px;
  }
  .hiw-step__title {
    font-size: .9rem;
  }
  .hiw-step__desc {
    font-size: .78rem;
    line-height: 1.5;
  }
  .hiw-step__badge {
    font-size: .6rem;
    padding: 2px 8px;
  }
}

@media (max-width: 375px) {
  .hiw-steps {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .hiw-step {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    text-align: left;
    padding: 0;
  }
  .hiw-step__icon {
    flex-shrink: 0;
    width: 60px;
    height: 60px;
    margin: 0;
  }
  .hiw-step__icon svg {
    width: 28px;
    height: 28px;
  }
  .hiw-step__badge {
    display: none;
  }
}

@media (max-width: 320px) {
  .hiw-section {
    padding: 44px 0;
  }
}

/* ─── 10. REVIEWS (reviews-grid) ─────────────────────────────────
   ────────────────────────────────────────────────────────────────── */

@media (max-width: 768px) {
  .reviews-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }
}

@media (max-width: 480px) {
  .review-card {
    padding: 20px 18px;
  }
}

/* ─── 11. CTA BAND (cta-band) ────────────────────────────────────
   ────────────────────────────────────────────────────────────────── */

@media (max-width: 768px) {
  .cta-band {
    padding: 52px 0;
  }
  .cta-band__title {
    font-size: clamp(1.5rem, 5.5vw, 2rem);
  }
  .cta-band__sub {
    font-size: .9rem;
    margin-bottom: 24px;
  }
  .cta-band__btns {
    flex-direction: column;
    align-items: center;
    gap: 12px;
  }
  .cta-band__btns .btn {
    width: 100%;
    max-width: 320px;
    justify-content: center;
    min-height: 48px;
  }
}

@media (max-width: 480px) {
  .cta-band {
    padding: 44px 0;
  }
  .cta-band__title {
    font-size: clamp(1.3rem, 5.5vw, 1.7rem);
  }
  .cta-band__btns .btn {
    max-width: 100%;
  }
}

@media (max-width: 375px) {
  .cta-band {
    padding: 36px 0;
  }
}

/* ─── 12. TRUST BAR ──────────────────────────────────────────────
   ────────────────────────────────────────────────────────────────── */

@media (max-width: 768px) {
  .trust-bar {
    overflow: hidden;
  }
  /* Statik pill düzeni — animasyon yerine wrap */
  .trust-bar-inner {
    overflow: hidden;
  }
  .trust-pill {
    padding: 10px 14px;
    font-size: .78rem;
  }
}

@media (max-width: 480px) {
  .trust-pill {
    padding: 8px 12px;
    font-size: .72rem;
  }
  .trust-pill svg {
    width: 14px;
    height: 14px;
  }
  /* Trust bar satırı: 2×3 ızgara gibi görünsün */
  .trust-bar-inner {
    flex-wrap: wrap !important;
    justify-content: center;
    gap: 0;
    padding: 4px 0;
  }
  .trust-pill {
    flex: 0 0 auto;
  }
  /* + ayırıcı mobilde gizle */
  .trust-pill:not(:last-child)::after {
    display: none;
  }
}

@media (max-width: 375px) {
  .trust-pill {
    padding: 7px 10px;
    font-size: .68rem;
    gap: 6px;
  }
  .trust-pill svg {
    width: 13px;
    height: 13px;
  }
}

/* ─── 13. FOOTER ─────────────────────────────────────────────────
   .site-footer, .footer-top, .footer-col, .footer-bottom
   ────────────────────────────────────────────────────────────────── */

@media (max-width: 1024px) {
  .footer-top {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
  }
}

@media (max-width: 768px) {
  .site-footer {
    padding-top: 44px;
  }
  .footer-top {
    grid-template-columns: 1fr;
    gap: 28px;
    padding-bottom: 32px;
  }
  .footer-brand {
    text-align: center;
  }
  .footer-brand p {
    font-size: .85rem;
    max-width: 480px;
    margin-left: auto;
    margin-right: auto;
  }
  .footer-social {
    justify-content: center;
  }
  .footer-col h4 {
    font-size: .88rem;
  }
  .footer-col ul {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 4px 16px;
  }
  .footer-col ul li {
    margin-bottom: 4px;
  }
  .footer-col ul li a {
    font-size: .82rem;
    min-height: 36px;
    display: flex;
    align-items: center;
  }
  .footer-contact li {
    font-size: .84rem;
  }
  .footer-contact a {
    min-height: 36px;
    display: flex;
    align-items: center;
  }
  .footer-bottom-inner {
    flex-direction: column;
    text-align: center;
    padding-right: 0;
    gap: 8px;
  }
  .footer-copyright {
    white-space: normal;
    font-size: .75rem;
    line-height: 1.7;
  }
  .footer-developer {
    font-size: .78rem;
  }
}

@media (max-width: 480px) {
  .footer-col ul {
    grid-template-columns: 1fr 1fr;
    gap: 2px 12px;
  }
  .footer-col ul li a {
    font-size: .78rem;
  }
  .footer-logo img {
    height: 42px;
  }
}

@media (max-width: 375px) {
  .footer-logo img {
    height: 36px;
    max-width: 160px;
  }
  .footer-col h4 {
    font-size: .8rem;
  }
  .footer-col ul li a {
    font-size: .75rem;
  }
  .footer-contact li {
    font-size: .78rem;
  }
}

@media (max-width: 320px) {
  .footer-col ul {
    grid-template-columns: 1fr;
  }
  .footer-social a {
    min-width: 44px;
    min-height: 44px;
  }
}

/* ─── 14. PAGE HERO (.page-hero) ─────────────────────────────────
   Blog, galeri, hizmet sayfalarının hero bölümleri
   ────────────────────────────────────────────────────────────────── */

@media (max-width: 768px) {
  .page-hero {
    min-height: 340px;
  }
  .page-hero__inner {
    padding: 60px 0 40px;
  }
  .page-hero__title {
    font-size: clamp(1.6rem, 5.5vw, 2.2rem);
  }
  .page-hero__sub {
    font-size: .9rem;
    max-width: 100%;
  }
  .page-hero__btns {
    gap: 10px;
  }
  .page-hero__btns .btn {
    min-height: 44px;
  }
}

@media (max-width: 480px) {
  .page-hero {
    min-height: 280px;
  }
  .page-hero__inner {
    padding: 44px 0 30px;
  }
  .page-hero__title {
    font-size: clamp(1.4rem, 5vw, 1.8rem);
    line-height: 1.2;
  }
  .page-hero__sub {
    font-size: .85rem;
    line-height: 1.6;
    margin-bottom: 20px;
  }
  .page-hero__btns {
    flex-direction: column;
    align-items: flex-start;
  }
  .page-hero__btns .btn {
    width: 100%;
    justify-content: center;
    max-width: 320px;
  }
  .page-hero__badge {
    font-size: .65rem;
    padding: 4px 12px;
  }
}

@media (max-width: 375px) {
  .page-hero {
    min-height: 240px;
  }
  .page-hero__inner {
    padding: 36px 0 24px;
  }
  .page-hero__title {
    font-size: clamp(1.2rem, 5.5vw, 1.5rem);
  }
  .page-hero__btns {
    gap: 8px;
  }
  .page-hero__btns .btn {
    max-width: 100%;
  }
}

/* ─── 15. DOGUM GÜNÜ HERO (.dogum-hero / hero-container) ─────────
   dogum-gunu-organizasyonu.php hero alanı
   ────────────────────────────────────────────────────────────────── */

@media (max-width: 900px) {
  .hero-container {
    grid-template-columns: 1fr !important;
    gap: 28px;
  }
  .hero-left {
    max-width: 100%;
    padding-right: 0;
  }
  .hero-right {
    max-width: 100%;
  }
  .konsept-panel {
    max-width: 100%;
  }
  .konsept-panel__list {
    grid-template-columns: repeat(3, 1fr);
  }
  .kp-item {
    min-height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
  }
}

@media (max-width: 480px) {
  .hero-container {
    padding-top: 20px !important;
  }
  .konsept-panel {
    padding: 16px;
    border-radius: 16px;
  }
  .konsept-panel__list {
    grid-template-columns: repeat(2, 1fr);
    gap: 6px;
  }
  .kp-item {
    font-size: .78rem;
    padding: 8px 6px;
    border-radius: 8px;
  }
}

@media (max-width: 375px) {
  .konsept-panel__list {
    grid-template-columns: repeat(2, 1fr);
    gap: 5px;
  }
  .kp-item {
    font-size: .72rem;
    padding: 7px 5px;
  }
}

/* ─── 16. İÇERİK + GÖRSEL YAN YANA (.content-split) ──────────────
   ────────────────────────────────────────────────────────────────── */

@media (max-width: 900px) {
  .content-split {
    grid-template-columns: 1fr;
    gap: 28px;
  }
  .content-split.reverse {
    direction: ltr;
  }
  .content-split__img {
    max-width: 100%;
    width: 100%;
  }
  .content-split__text h2 {
    font-size: clamp(1.4rem, 4.5vw, 1.8rem);
  }
}

@media (max-width: 480px) {
  .content-split {
    gap: 20px;
  }
  .content-split__text p {
    font-size: .9rem;
  }
  .content-split__text ul li {
    font-size: .85rem;
    padding: 7px 0 7px 26px;
  }
  .page-content {
    padding: 52px 0;
  }
}

@media (max-width: 375px) {
  .page-content {
    padding: 40px 0;
  }
  .content-split__text h2 {
    font-size: clamp(1.2rem, 5vw, 1.5rem);
  }
}

/* ─── 17. ÖZELLİK KARTLARI (.feature-grid, .feature-card) ────────
   ────────────────────────────────────────────────────────────────── */

@media (max-width: 768px) {
  .feature-grid {
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 16px;
    margin-top: 32px;
  }
}

@media (max-width: 480px) {
  .feature-grid {
    grid-template-columns: 1fr 1fr;
    gap: 12px;
  }
  .feature-card {
    padding: 20px 16px;
  }
  .feature-card__icon {
    width: 44px;
    height: 44px;
    font-size: 1.3rem;
    margin-bottom: 12px;
  }
  .feature-card__title {
    font-size: .9rem;
  }
  .feature-card__desc {
    font-size: .8rem;
  }
}

@media (max-width: 375px) {
  .feature-grid {
    grid-template-columns: 1fr;
    gap: 10px;
  }
  .feature-card {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    padding: 18px 16px;
  }
  .feature-card__icon {
    flex-shrink: 0;
    margin: 0;
  }
}

/* ─── 18. SAYFA GALERİSİ (.page-gallery) ─────────────────────────
   ────────────────────────────────────────────────────────────────── */

@media (max-width: 768px) {
  .page-gallery {
    grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
    gap: 10px;
    margin-top: 28px;
  }
}

@media (max-width: 480px) {
  .page-gallery {
    grid-template-columns: repeat(2, 1fr);
    gap: 8px;
  }
  .page-gallery-item {
    border-radius: 10px;
  }
}

@media (max-width: 375px) {
  .page-gallery {
    grid-template-columns: repeat(2, 1fr);
    gap: 6px;
  }
}

/* ─── 19. FORMLAR (touch-friendly) ───────────────────────────────
   iOS'ta font-size:16px → zoom olmaz. min-height:44px → tap target.
   ────────────────────────────────────────────────────────────────── */

input[type="text"],
input[type="email"],
input[type="tel"],
input[type="number"],
input[type="password"],
input[type="search"],
input[type="url"],
select,
textarea {
  font-size: 16px;
  min-height: 44px;
  border-radius: 10px;
  -webkit-appearance: none;
  appearance: none;
}

input[type="text"]:focus,
input[type="email"]:focus,
input[type="tel"]:focus,
input[type="number"]:focus,
input[type="password"]:focus,
input[type="search"]:focus,
input[type="url"]:focus,
select:focus,
textarea:focus {
  outline: none;
}

textarea {
  resize: vertical;
}

/* Form submit butonları */
input[type="submit"],
input[type="button"],
button[type="submit"] {
  min-height: 48px;
  cursor: pointer;
}

@media (max-width: 768px) {
  .form-row {
    grid-template-columns: 1fr;
    gap: 0;
  }
  .iletisim-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .iletisim-form-wrap {
    padding: 24px 20px;
  }
  .form-group input,
  .form-group select,
  .form-group textarea {
    font-size: 16px;
    min-height: 48px;
    padding: 12px 14px;
  }
  .form-group textarea {
    min-height: 100px;
  }
  .form-group label {
    font-size: .82rem;
  }
  .form-title {
    font-size: 1.2rem;
  }
  .btn[type="submit"],
  button[type="submit"] {
    width: 100%;
    justify-content: center;
    min-height: 52px;
    font-size: 1rem;
  }
}

@media (max-width: 480px) {
  .iletisim-form-wrap {
    padding: 20px 16px;
  }
  .form-group {
    margin-bottom: 14px;
  }
}

/* İletişim sayfası özel (ct-hero) */
@media (max-width: 768px) {
  .ct-hero__inner {
    padding: 60px 0 40px;
  }
}

@media (max-width: 480px) {
  .ct-hero {
    min-height: 280px;
  }
  .ct-hero__inner {
    padding: 44px 0 30px;
  }
}

/* ─── 20. FLOATING BUTONLAR (.float-btns, .float-btn) ────────────
   ────────────────────────────────────────────────────────────────── */

@media (max-width: 768px) {
  .float-btns {
    bottom: 16px;
    right: 14px;
    gap: 10px;
  }
  .float-btn {
    width: 52px;
    height: 52px;
    min-width: 44px;
    min-height: 44px;
  }
}

@media (max-width: 375px) {
  .float-btns {
    bottom: 12px;
    right: 10px;
    gap: 8px;
  }
  .float-btn {
    width: 48px;
    height: 48px;
  }
  .float-btn svg {
    width: 20px;
    height: 20px;
  }
}

/* Footer'ın üzerinde kalmak için padding-bottom body'ye */
@media (max-width: 768px) {
  /* float butonlar içerikle çakışmasın */
  .site-footer {
    padding-bottom: 0;
  }
}

/* ─── 21. GALERİ SAYFASI (.glr-*) ───────────────────────────────
   galeri.php içi: inline <style> + mobile.css destekli
   ────────────────────────────────────────────────────────────────── */

@media (max-width: 768px) {
  .glr-hero {
    min-height: 240px;
  }
  .glr-filter-inner {
    flex-wrap: wrap;
    gap: 6px;
    justify-content: center;
    padding: 12px;
    overflow-x: visible;
  }
  .glr-filter-btn {
    flex: 0 0 auto;
    min-height: 40px;
    font-size: .8rem;
    padding: 8px 14px;
    white-space: nowrap;
  }
}

@media (max-width: 640px) {
  .glr-grid {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 8px;
  }
  .glr-card {
    border-radius: 10px;
  }
}

@media (max-width: 480px) {
  .glr-filter-inner {
    gap: 5px;
    padding: 10px;
  }
  .glr-filter-btn {
    min-height: 38px;
    font-size: .75rem;
    padding: 7px 11px;
    flex: 0 0 calc(50% - 5px);
    text-align: center;
    justify-content: center;
  }
  .glr-grid {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 6px;
  }
  /* Modal nav/close butonlar – tap target */
  .glr-modal__close,
  .glr-modal__nav {
    min-width: 44px;
    min-height: 44px;
  }
  .glr-modal__nav--prev {
    left: 8px;
  }
  .glr-modal__nav--next {
    right: 8px;
  }
}

@media (max-width: 375px) {
  .glr-filter-btn {
    flex: 0 0 calc(50% - 4px);
    font-size: .7rem;
    padding: 7px 8px;
  }
}

/* ─── 22. KONSEPT GRID (.konsept-grid, .konsept-card) ────────────
   ────────────────────────────────────────────────────────────────── */

@media (max-width: 768px) {
  .konsept-grid {
    grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
    gap: 14px;
  }
}

@media (max-width: 480px) {
  .konsept-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }
  .konsept-card__body {
    padding: 10px 12px 12px;
  }
  .konsept-card__name {
    font-size: .82rem;
  }
  .konsept-card__link {
    font-size: .72rem;
  }
}

@media (max-width: 375px) {
  .konsept-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 8px;
  }
  .konsept-card__body {
    padding: 8px 10px 10px;
  }
  .konsept-card__name {
    font-size: .78rem;
  }
}

/* ─── 23. PAKET KARTLARI (.paket-grid) ───────────────────────────
   ────────────────────────────────────────────────────────────────── */

@media (max-width: 768px) {
  .paket-grid {
    grid-template-columns: 1fr;
    max-width: 480px;
    margin-left: auto;
    margin-right: auto;
  }
}

@media (max-width: 480px) {
  .paket-grid {
    max-width: 100%;
  }
  .paket-card {
    padding: 24px 18px;
  }
  .paket-name {
    font-size: 1.1rem;
  }
  .paket-price {
    font-size: 1.5rem;
  }
  .paket-features li {
    font-size: .82rem;
  }
}

/* ─── 24. SECTION BAŞLIKLARI ─────────────────────────────────────
   .section, .section-header, .section-title, .section-sub
   ────────────────────────────────────────────────────────────────── */

@media (max-width: 768px) {
  .section {
    padding: 56px 0;
  }
  .section-header {
    margin-bottom: 36px;
  }
  .section-title {
    font-size: clamp(1.5rem, 5vw, 2rem);
  }
  .section-sub {
    font-size: .9rem;
  }
}

@media (max-width: 480px) {
  .section {
    padding: 44px 0;
  }
  .section-header {
    margin-bottom: 28px;
  }
  .section-title {
    font-size: clamp(1.3rem, 5.5vw, 1.7rem);
  }
  .section-eyebrow {
    font-size: .68rem;
  }
}

@media (max-width: 375px) {
  .section {
    padding: 36px 0;
  }
  .section-title {
    font-size: clamp(1.2rem, 6vw, 1.5rem);
  }
}

/* ─── 25. BREADCRUMB ─────────────────────────────────────────────
   ────────────────────────────────────────────────────────────────── */

@media (max-width: 480px) {
  .breadcrumb-inner {
    font-size: .75rem;
    gap: 5px;
    flex-wrap: wrap;
  }
  .breadcrumb {
    padding: 8px 0;
  }
}

/* ─── 26. SAYFA CTA (.page-cta) ──────────────────────────────────
   Hizmet sayfalarının alt CTA kutularına
   ────────────────────────────────────────────────────────────────── */

@media (max-width: 768px) {
  .page-cta {
    padding: 40px 24px;
    border-radius: 18px;
    margin-top: 44px;
  }
  .page-cta h2 {
    font-size: clamp(1.3rem, 4.5vw, 1.7rem);
  }
  .page-cta .btns {
    flex-direction: column;
    align-items: center;
  }
  .page-cta .btns .btn {
    width: 100%;
    max-width: 320px;
    justify-content: center;
    min-height: 48px;
  }
}

@media (max-width: 480px) {
  .page-cta {
    padding: 32px 16px;
    border-radius: 14px;
    margin-top: 36px;
  }
  .page-cta .btns .btn {
    max-width: 100%;
  }
}

/* ─── 27. FAQ (.faq-list, .faq-item) ─────────────────────────────
   ────────────────────────────────────────────────────────────────── */

@media (max-width: 480px) {
  .faq-q {
    padding: 15px 18px;
    font-size: .88rem;
  }
  .faq-a {
    font-size: .85rem;
    line-height: 1.65;
  }
  .faq-item.open .faq-a {
    padding: 0 18px 15px;
  }
}

@media (max-width: 375px) {
  .faq-q {
    padding: 13px 14px;
    font-size: .84rem;
  }
  .faq-item {
    border-radius: 10px;
    margin-bottom: 8px;
  }
}

/* ─── 28. BYB SLIDER (byb-slider) ────────────────────────────────
   ────────────────────────────────────────────────────────────────── */

@media (max-width: 768px) {
  .byb-slider {
    height: 260px;
  }
  .byb-slider__btn {
    width: 40px;
    height: 40px;
    min-width: 44px;
    min-height: 44px;
  }
  .byb-slider__btn--prev {
    left: 8px;
  }
  .byb-slider__btn--next {
    right: 8px;
  }
}

@media (max-width: 480px) {
  .byb-slider {
    height: 220px;
  }
}

@media (max-width: 375px) {
  .byb-slider {
    height: 190px;
  }
  /* Ok gizle, swipe yeterli */
  .byb-slider__btn {
    display: none;
  }
}

/* ─── 29. MİNİ GALERİ & BSL SLIDER ──────────────────────────────
   ────────────────────────────────────────────────────────────────── */

@media (max-width: 480px) {
  .mini-gal {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 8px;
  }
  .bsl-thumb {
    width: 48px;
    height: 36px;
  }
}

/* ─── 30. HAKKIMIZDA / KURUMSAL SAYFALAR ─────────────────────────
   Genel sayfa içi bileşenleri
   ────────────────────────────────────────────────────────────────── */

@media (max-width: 768px) {
  .team-grid,
  .deger-grid,
  .kurumsal-grid {
    grid-template-columns: 1fr !important;
    gap: 20px;
  }
  .timeline-item {
    flex-direction: column;
    gap: 12px;
  }
}

@media (max-width: 480px) {
  .hakkimizda-stats {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 14px;
  }
}

/* ─── 31. NEON BAŞLIK (.neon-title) ──────────────────────────────
   Mobilde ağır text-shadow performansı düşürür; sadeleştir.
   ────────────────────────────────────────────────────────────────── */

@media (max-width: 480px) {
  .neon-title {
    text-shadow:
      0 0 7px #fff,
      0 0 21px #00e5ff,
      0 0 42px #00e5ff;
    animation: none;
  }
}

/* ─── 32. YATAY SCROLL ENGELLE ───────────────────────────────────
   Tüm sayfalarda x overflow gizle
   ────────────────────────────────────────────────────────────────── */

html,
body {
  overflow-x: hidden;
  max-width: 100vw;
}

/* ─── 33. GÖRSEL YÜKLEME PLACEHOLDER ─────────────────────────────
   Yüklenmemiş görseller için minimum boyut (layout shift önle)
   ────────────────────────────────────────────────────────────────── */

@media (max-width: 768px) {
  img[loading="lazy"] {
    min-height: 1px;
  }
}

/* ─── 34. MEGA CTA (.byb-mega-cta) ──────────────────────────────
   ────────────────────────────────────────────────────────────────── */

@media (max-width: 768px) {
  .byb-mega-cta {
    padding: 52px 0;
  }
  .byb-mega-cta__title {
    font-size: clamp(1.5rem, 5.5vw, 2rem);
  }
  .byb-mega-cta__btns {
    flex-direction: column;
    align-items: center;
    gap: 12px;
  }
  .byb-mega-cta__btns .btn,
  .byb-mega-cta__btns .byb-btn {
    width: 100%;
    max-width: 320px;
    justify-content: center;
    min-height: 48px;
  }
}

@media (max-width: 480px) {
  .byb-mega-cta {
    padding: 40px 0;
  }
  .byb-mega-cta__btns .btn,
  .byb-mega-cta__btns .byb-btn {
    max-width: 100%;
  }
}

/* ─── 35. İLETİŞİM SAYFASI (iletisim-card) ───────────────────────
   ────────────────────────────────────────────────────────────────── */

@media (max-width: 480px) {
  .iletisim-cards {
    gap: 10px;
  }
  .iletisim-card {
    padding: 14px 16px;
    border-radius: 12px;
  }
  .iletisim-card__icon {
    width: 42px;
    height: 42px;
    border-radius: 10px;
  }
  .iletisim-card strong {
    font-size: .84rem;
  }
  .iletisim-card span {
    font-size: .78rem;
  }
}

/* ─── 36. BLOG DİNAMİK / BLOG DETAY ─────────────────────────────
   .blog-article, .blog-detail, .blog-article-inner
   ────────────────────────────────────────────────────────────────── */

@media (max-width: 768px) {
  .blog-article h2 {
    font-size: clamp(1.3rem, 4.5vw, 1.7rem);
  }
  .blog-article p {
    font-size: .92rem;
  }
}

@media (max-width: 480px) {
  .blog-article h2 {
    font-size: clamp(1.15rem, 5vw, 1.4rem);
  }
  .blog-article p {
    font-size: .88rem;
    line-height: 1.7;
  }
}

/* ─── 37. STATS ROW (inline stats) ──────────────────────────────
   dogum-gunu-organizasyonu.php gibi sayfalardaki inline stats-row
   ────────────────────────────────────────────────────────────────── */

@media (max-width: 640px) {
  .stats-row {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 12px !important;
  }
  .stat-box {
    padding: 16px !important;
    border-radius: 12px !important;
  }
  .stat-box .stat-num {
    font-size: 1.8rem !important;
  }
}

@media (max-width: 375px) {
  .stats-row {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 8px !important;
  }
  .stat-box .stat-num {
    font-size: 1.6rem !important;
  }
}

/* ─── 38. AÇILIŞ HİZMETLERİ (acilis-three-card) ─────────────────
   ────────────────────────────────────────────────────────────────── */

@media (max-width: 768px) {
  .acilis-three-grid {
    grid-template-columns: 1fr !important;
    gap: 16px;
  }
}

@media (max-width: 480px) {
  .acilis-three-card {
    border-radius: 14px;
  }
  .acilis-three-card__body {
    padding: 16px 14px;
  }
}

/* ─── 39. BLOG FİLTRE SAYACI ─────────────────────────────────────
   ────────────────────────────────────────────────────────────────── */

@media (max-width: 480px) {
  .blog-filter-count {
    font-size: .8rem;
    text-align: center;
    display: block;
    width: 100%;
  }
}

/* ─── 40. HIZMET SAYFASI İÇİ STATİSTİK KUTUSU ───────────────────
   Acilis/sunnet/dugün/balon vb. sayfalardaki stat kutucukları
   ────────────────────────────────────────────────────────────────── */

@media (max-width: 640px) {
  [style*="grid-template-columns:repeat(4"] {
    grid-template-columns: repeat(2, 1fr) !important;
  }
  [style*="grid-template-columns: repeat(4"] {
    grid-template-columns: repeat(2, 1fr) !important;
  }
}

/* ─── 41. CONTAINER PADDING MOBİL ───────────────────────────────
   .container: min(1200px, 94%) — ek yatay padding gerekmez
   ama 320px için biraz daha boşluk ver
   ────────────────────────────────────────────────────────────────── */

@media (max-width: 375px) {
  .container {
    width: min(100%, calc(100% - 24px));
  }
}

@media (max-width: 320px) {
  .container {
    width: min(100%, calc(100% - 20px));
  }
}

/* ─── 42. BUTON BOYUTLARI (genel) ────────────────────────────────
   ────────────────────────────────────────────────────────────────── */

@media (max-width: 480px) {
  .btn {
    min-height: 44px;
    padding: 11px 22px;
    font-size: .88rem;
  }
}

@media (max-width: 375px) {
  .btn {
    min-height: 44px;
    padding: 10px 18px;
    font-size: .84rem;
  }
}

/* ─── 43. WAVE DİVİDER MOBİL ─────────────────────────────────────
   ────────────────────────────────────────────────────────────────── */

@media (max-width: 480px) {
  .wave-divider svg {
    height: 40px;
  }
  .byb-wave-divider svg {
    height: 40px;
  }
}

/* ─── 44. HEADER SCROLL EFFECT ───────────────────────────────────
   Mobilde daha kompakt header
   ────────────────────────────────────────────────────────────────── */

@media (max-width: 768px) {
  .site-header.scrolled {
    box-shadow: 0 2px 16px rgba(0, 188, 212, 0.2);
  }
}

/* ─── 45. SAYFA İÇİ GALERİ GRIDLERİ (repeat(4,1fr)) ─────────────
   balon-susleme, dugun, nisan sayfaları — 480px altı tek sütun
   ────────────────────────────────────────────────────────────────── */

@media (max-width: 768px) {
  .balon-gallery__grid,
  .dugun-gallery__grid,
  .nis-gallery__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }
}

@media (max-width: 480px) {
  .balon-gallery__grid,
  .dugun-gallery__grid,
  .nis-gallery__grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }
}

/* ─── 46. KURUMSAL SAYFA (.nk-container) ─────────────────────────
   Sayfaya özel container — responsive padding ekle
   ────────────────────────────────────────────────────────────────── */

.nk-container {
  width: 100%;
  box-sizing: border-box;
}

@media (max-width: 768px) {
  .nk-container {
    padding-left: clamp(16px, 4%, 24px);
    padding-right: clamp(16px, 4%, 24px);
  }
}

@media (max-width: 375px) {
  .nk-container {
    padding-left: 12px;
    padding-right: 12px;
  }
}

/* ─── 47. İLÇE BADGELERİ (.ilce-badge, .ilce-grid) ──────────────
   sunnet-organizasyonu.php ilçe grid — 320px altı tek sütun
   ────────────────────────────────────────────────────────────────── */

@media (max-width: 375px) {
  .ilce-grid {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 6px !important;
  }
  .ilce-badge {
    font-size: .72rem;
    padding: 6px 8px;
    white-space: normal;
    word-break: break-word;
  }
}

@media (max-width: 320px) {
  .ilce-grid {
    grid-template-columns: 1fr !important;
  }
}

/* ─── 48. BLOG PILL LİNKLERİ (nowrap sarmalayıcı) ───────────────
   blog.php ilgili arama etiketleri satırı
   ────────────────────────────────────────────────────────────────── */

@media (max-width: 480px) {
  .blog-related-tags,
  .blog-tag-row,
  .blog-pills-row {
    flex-wrap: wrap !important;
    gap: 6px;
  }
  .blog-related-tags a,
  .blog-tag-row a,
  .blog-pills-row a {
    white-space: normal;
    word-break: break-word;
    flex: 0 0 auto;
  }
}

/* ─── 49. GENEL RESPONSİF GÖRSELLER ─────────────────────────────
   max-width guard: tüm img ve video öğeleri taşmasın
   ────────────────────────────────────────────────────────────────── */

img,
video,
iframe,
embed,
object {
  max-width: 100%;
  height: auto;
}

/* iframe için özellikle harita ve embed alanları */
iframe {
  max-width: 100%;
}

/* ─── 50. MASA-SANDALYE VE POPCORN GALERİ GRİDİ ─────────────────
   masa-sandalye-kiralama.php, popcorn-kiralama.php sayfa içi galeri
   ────────────────────────────────────────────────────────────────── */

@media (max-width: 480px) {
  .masa-gallery__grid,
  .popcorn-gallery__grid,
  .pamuk-gallery__grid {
    grid-template-columns: 1fr !important;
    gap: 10px;
  }
}

/* ═══════════════════════════════════════════════════════════════ */
