/**
 * home.css
 * Premier Dental Clinic — Anasayfa Stilleri
 * Hero, Before/After Gallery, YouTube Shorts, Reviews,
 * Process, Doctor/Team, FAQ, Blog Preview, Services, CTA
 * Sadece anasayfada yüklenir.
 */

/* ====================================
   HERO SECTIONS

/* ─────────────────────────────────────────
   BANNER — Ana Wrapper
   width: 100% → site genişliğini alır,
   max-width yok, padding ile nefes alır.
───────────────────────────────────────── */
.lygos-banner {
  position: relative;
  width: calc(100% - 40px);
  max-width: 1400px;
  height: 700px;
  display: flex;
  overflow: hidden;
  justify-self: center;
  border-radius: 20px;
  margin: 20px auto;
}

/* ─────────────────────────────────────────
   ARKA PLAN GÖRSELLER
   .lygos-banner__bg-desktop  → ≥ 768px
   .lygos-banner__bg-mobile   → < 768px
───────────────────────────────────────── */
.lygos-banner__bg-desktop,
.lygos-banner__bg-mobile {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.lygos-banner__bg-desktop img,
.lygos-banner__bg-mobile img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

/* Overlay – okunabilirlik */
.lygos-banner__bg-desktop::after,
.lygos-banner__bg-mobile::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    115deg,
    rgba(0,0,0,0.62) 0%,
    rgba(0,0,0,0.28) 50%,
    rgba(0,0,0,0.08) 100%
  );
}

/* Varsayılan: masaüstü görsel açık, mobil kapalı */
.lygos-banner__bg-desktop { display: block; }
.lygos-banner__bg-mobile  { display: none;  }

/* ─────────────────────────────────────────
   İÇ CONTAINER
   Banner tam genişlik, içerik padding ile
   sınırlandırılır — max-width ile ortalanır.
───────────────────────────────────────── */
.lygos-banner__inner {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;

  /* Desktop: sol alt başlık + sağ form yan yana */
  display: flex;
  flex-direction: row;
  align-items: anchor-center;
  justify-content: space-between;
  gap: 48px;
  height: 670px;

  /* Padding: üst-alt / sol-sağ — ekrana sıfır değmez */
  padding: 72px 60px;
}

/* ─────────────────────────────────────────
   SOL — Başlık
───────────────────────────────────────── */
.lygos-banner__title {
  flex: 1 1 auto;
  color: #ffffff;
  padding-bottom: 6px;
  min-width: 0;
  align-self: flex-end; /* başlık daima alt kısımda */
}

.lygos-banner__title h2 {
  font-size: clamp(36px, 4.5vw, 66px);
  font-weight: 500;
  line-height: 1.08;
  letter-spacing: -0.5px;
}

.lygos-banner__title h2 em {
  font-weight: 700;
}

/* ─────────────────────────────────────────
   SAĞ — Form Kartı
───────────────────────────────────────── */
.lygos-form-card {
  flex-shrink: 0;
  width: 440px;
  max-width: 100%;
}


/* ═══════════════════════════════════════════
   RESPONSIVE BREAKPOINTS
   1. Tablet geniş  : 1024px – 1199px
   2. Tablet dar    :  768px – 1023px
   3. Mobil geniş   :  540px –  767px
   4. Mobil dar     :        –  539px
═══════════════════════════════════════════ */

/* ── 1. Tablet geniş (1024–1199px) ── */
@media (max-width: 1199px) {
  .lygos-banner__inner {
    padding: 60px 40px;
    gap: 36px;
  }

  .lygos-form-card {
    width: 320px;
  }
}

/* ── 2. Tablet dar (768–1023px) ── */
@media (max-width: 1023px) {
  .lygos-banner {
    height: auto;
    width: calc(100% - 32px);
    border-radius: 16px;
	padding-bottom: 0px;
  }

  .lygos-banner__inner {
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-end;
    padding: 40px 28px 36px;
    gap: 24px;
    min-height: 560px;
  }

  .lygos-banner__title {
    align-self: auto;
    padding-bottom: 0;
  }

  .lygos-form-card {
    width: 100%;
  }
}

/* ── 3+4. Mobil (< 768px) ── */
@media (max-width: 767px) {

  /* Görsel değişimi */
  .lygos-banner__bg-desktop { display: none;  }
  .lygos-banner__bg-mobile  { display: block; }

  .lygos-banner {
    width: calc(100% - 24px);
    border-radius: 14px;
    margin: 12px auto;
	height:auto;
	padding-bottom: 0px;
  }

  .lygos-banner__inner {
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-end;
    padding: 32px 18px 28px;
    gap: 20px;
    min-height: 480px;
  }

  .lygos-banner__title {
    max-width: 100%;
    padding-bottom: 0;
    align-self: auto;
  }

  .lygos-form-card {
    width: 100%;
  }

}

/* ── 4. Mobil dar (< 480px) ── */
@media (max-width: 479px) {
  .lygos-banner {
    width: calc(100% - 16px);
    border-radius: 12px;
    margin: 8px auto;
	height:auto;
	padding-top: 200px;
	padding-bottom: 0px;
	}

  .lygos-banner__inner {
    padding: 24px 14px 22px;
    gap: 16px;
    min-height: 420px;
  }
}


/* ====================================
   ABOUT INTRO SECTION (anasayfada da var)
   ==================================== */


.about-intro-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-2xl);
    align-items: center;
}

.intro-text {
    font-size: var(--font-size-md);
    line-height: 1.8;
    color: var(--text-color);
    margin-bottom: var(--space-lg);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-lg);
}

.stat-item {
    text-align: center;
    padding: var(--space-md);
    background: linear-gradient(135deg, rgba(9, 75, 133, 0.03) 0%, rgba(145, 175, 201, 0.05) 100%);
    border-radius: var(--border-radius-md);
}

.stat-number {
    font-size: var(--font-size-3xl);
    font-weight: 700;
    color: var(--primary-color);
    line-height: 1;
    margin-bottom: var(--space-xs);
}

.stat-label {
    font-size: var(--font-size-sm);
    color: var(--text-light);
    font-weight: 500;
}

.about-intro-image {
    aspect-ratio: 5 / 4;
    border-radius: var(--border-radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.about-intro-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.image-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--bg-secondary);
}

@media (max-width: 1024px) {
    .about-intro-grid {
        grid-template-columns: 1fr;
        gap: var(--space-xl);
    }
    
    .stats-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

@media (max-width: 640px) {
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: var(--space-sm);
    }
    
    .stat-number {
        font-size: var(--font-size-2xl);
    }
    
    .stat-label {
        font-size: var(--font-size-xs);
    }
}

/* ====================================
   BEFORE/AFTER GALLERY
   Renk: #091151 teması
   ==================================== */
.before-after {
    padding: var(--space-3xl) 0;
    background: #060d2e;
    overflow: hidden;
}

/* ── Section Header ── */
.before-after .section-header.center {
    text-align: center;
    margin-bottom: var(--space-xl);
}

.before-after .section-label {
    display: inline-block;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: #91afc9;
    background: rgba(145, 175, 201, 0.12);
    padding: 6px 18px;
    border-radius: var(--border-radius-full);
    margin-bottom: 12px;
}

.before-after .section-title {
    font-size: clamp(26px, 4vw, 38px);
    font-weight: 700;
    color: #fff;
    line-height: 1.2;
}

/* ── Category Tabs ── */
.ba-tabs {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-bottom: var(--space-xl);
    flex-wrap: wrap;
}

.ba-tab {
    padding: 10px 24px;
    background: transparent;
    border: 2px solid rgba(145, 175, 201, 0.25);
    border-radius: var(--border-radius-full);
    font-weight: 600;
    font-size: 13px;
    color: rgba(255,255,255,0.5);
    cursor: pointer;
    transition: all 0.22s ease;
    font-family: inherit;
}

.ba-tab:hover {
    border-color: #91afc9;
    color: #91afc9;
}

.ba-tab.active {
    background: #091151;
    border-color: #91afc9;
    color: #fff;
}

/* ── Slider Wrapper ── */
.ba-slider-wrapper {
    position: relative;
    padding-bottom: 52px;
}

/* ── BA Kart ── */
.ba-card {
    background: #0d1845;
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid rgba(145, 175, 201, 0.15);
    box-shadow: 0 8px 32px rgba(0,0,0,0.4);
    transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
}

.ba-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 48px rgba(9,17,81,0.6);
    border-color: rgba(145,175,201,0.4);
}

/* ────────────────────────────────────────
   TEK GÖRSEL YAPISI
   Görsel before (üst) + after (alt)
   birleşik tek bir dosya olarak yüklenir.
   Etiketler ve ayraç CSS ile üstüne eklenir.
   ──────────────────────────────────────── */
.ba-image-wrap {
    position: relative;
    overflow: hidden;
    background: #091151;
}

/* Fancybox tetikleyici */
.ba-image-wrap .ba-trigger {
    display: block;
    position: relative;
    cursor: zoom-in;
    outline: none;
    text-decoration: none;
}

.ba-image-wrap .ba-trigger img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.5s ease;
}

.ba-card:hover .ba-image-wrap .ba-trigger img {
    transform: scale(1.04);
}

/* ── Before / After Etiketleri ── */
.ba-label {
    position: absolute;
    left: 10px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: #fff;
    background: rgba(9, 17, 81, 0.75);
    backdrop-filter: blur(4px);
    padding: 4px 10px;
    border-radius: 4px;
    z-index: 4;
    pointer-events: none;
    line-height: 1;
}

/* Before: görselin üst kenarına yakın */
.ba-label.ba-label--before {
    top: 10px;
}

/* After: görselin tam ortasının hemen altı */
.ba-label.ba-label--after {
    top: calc(50% + 10px);
    background: rgba(145, 175, 201, 0.85);
    color: #060d2e;
}

/* ── Ortadaki Yatay Ayraç ── */
.ba-divider {
    position: absolute;
    left: 0;
    right: 0;
    top: 50%;
    height: 2px;
    background: rgba(145, 175, 201, 0.5);
    transform: translateY(-50%);
    z-index: 3;
    pointer-events: none;
}

/* ── Zoom İkonu ── */
.ba-zoom-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0.7);
    width: 44px;
    height: 44px;
    background: rgba(9, 17, 81, 0.75);
    backdrop-filter: blur(6px);
    border: 1.5px solid rgba(145, 175, 201, 0.55);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    opacity: 0;
    transition: opacity 0.25s ease, transform 0.25s ease;
    z-index: 5;
    pointer-events: none;
}

.ba-card:hover .ba-zoom-icon {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1);
}

/* ── Alt Bilgi ── */
.ba-info {
    padding: 14px 16px;
    background: #fff;
    border-top: 1px solid rgba(145,175,201,0.15);
    text-align: center;
}

.ba-info h3 {
    font-size: 14px;
    font-weight: 700;
    color: #091151;
    line-height: 1.3;
    margin-bottom: 4px;
}

.ba-info p {
    font-size: 12px;
    color: #091151;
    font-weight: 500;
}

/* ── MASAÜSTÜ: Normal Swiper, 3 kart yan yana ── */
.baSwiper {
    overflow: hidden !important;
    padding: 16px 4px !important;
}

/* ── Navigation ── */
.ba-prev,
.ba-next {
    position: absolute;
    top: 50%;
    transform: translateY(calc(-50% - 26px));
    width: 44px;
    height: 44px;
    background: rgba(9,17,81,0.8);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(145,175,201,0.3);
    border-radius: 50%;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10;
    transition: all 0.2s ease;
}

.ba-prev { left: -22px; }
.ba-next { right: -22px; }

.ba-prev:hover,
.ba-next:hover {
    background: #091151;
    border-color: #91afc9;
    transform: translateY(calc(-50% - 26px)) scale(1.08);
}

.swiper-button-prev::after,
.swiper-button-next::after {
    font-size: 16px;
    font-weight: 900;
}

/* ── Pagination ── */
.baSwiper .swiper-pagination {
    position: absolute;
    bottom: -40px;
    left: 0;
    right: 0;
}

.swiper-pagination-bullet {
    width: 8px;
    height: 8px;
    background: rgba(255,255,255,0.2);
    opacity: 1;
    transition: all 0.2s ease;
}

.swiper-pagination-bullet-active {
    background: #91afc9;
    width: 24px;
    border-radius: 4px;
}

/* ── Fancybox Tema Overrides ── */
.fancybox__container {
    --fancybox-bg: rgba(6, 13, 46, 0.96);
    --fancybox-accent-color: #91afc9;
}

.fancybox__toolbar {
    background: linear-gradient(to bottom, rgba(6,13,46,0.9) 0%, transparent 100%);
}

.fancybox__caption {
    background: linear-gradient(to top, rgba(6,13,46,0.95) 0%, transparent 100%);
    color: #fff;
    font-family: inherit;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.5px;
    padding: 20px 24px 16px;
    text-align: center;
}

.fancybox__nav .f-button {
    background: rgba(9, 17, 81, 0.8);
    border: 1px solid rgba(145, 175, 201, 0.3);
    color: #fff;
    transition: all 0.2s ease;
}

.fancybox__nav .f-button:hover {
    background: #091151;
    border-color: #91afc9;
}

/* ── CTA ── */
.ba-cta-wrapper {
    text-align: center;
    margin-top: var(--space-xl);
}

.ba-fancy-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 36px;
    background: #091151;
    color: #fff;
    font-size: 15px;
    font-weight: 700;
    text-decoration: none;
    border-radius: var(--border-radius-full);
    border: 2px solid rgba(145,175,201,0.35);
    transition: all 0.22s ease;
}

.ba-fancy-btn:hover {
    background: #0d1a6e;
    border-color: #91afc9;
    transform: translateY(-2px);
    box-shadow: 0 8px 28px rgba(9,17,81,0.5);
}

.btn-icon {
    font-size: 18px;
    transition: transform 0.2s ease;
}

.ba-fancy-btn:hover .btn-icon {
    transform: translateX(4px);
}

/* ====================================
   YOUTUBE SHORTS CAROUSEL
   ==================================== */
.youtube-shorts {
    padding: var(--space-3xl) 0;
    padding-bottom: 100px;
}

.shorts-slider-wrapper {
    position: relative;
}

/* ── Kart base ── */
.short-card {
    background: #000;
    border-radius: var(--border-radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: transform var(--transition-base), box-shadow var(--transition-base);
    position: relative;
}

.short-card a {
    text-decoration: none;
    color: inherit;
    display: block;
    position: relative;
}

/* ── Thumbnail ── */
.short-thumbnail {
    position: relative;
    aspect-ratio: 9 / 16;
    background: #000;
    overflow: hidden;
}

.short-thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.45s ease;
    display: block;
}

/* ── Başlık overlay (masaüstü hover) ── */
.short-info {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 40px var(--space-sm) var(--space-sm);
    background: linear-gradient(to top, rgba(0,0,0,0.85) 0%, transparent 100%);
    transform: translateY(100%);
    transition: transform 0.35s ease;
    z-index: 3;
}

.short-info h4 {
    font-size: var(--font-size-sm);
    font-weight: 600;
    color: #fff;
    line-height: 1.4;
    margin: 0;
}

/* ── Masaüstü hover ── */
@media (min-width: 768px) {
    .short-card:hover .short-info {
        transform: translateY(0);
    }

    .short-card:hover .short-thumbnail img {
        transform: scale(1.05);
    }

    /* Nav butonları masaüstü */
    .shorts-prev,
    .shorts-next {
        color: #fff;
        background: rgba(9, 17, 81, 0.75);
        width: 44px;
        height: 44px;
        border-radius: 50%;
        transition: background 0.2s ease;
    }

    .shorts-prev:hover,
    .shorts-next:hover {
        background: #091151;
    }

    .shorts-prev::after,
    .shorts-next::after {
        font-size: 16px;
    }

    .shorts-prev { left: -10px; }
    .shorts-next { right: -10px; }
}

/* ====================================
   MOBİL — mevcut hali korunuyor
   ==================================== */
@media (max-width: 640px) {
    .shortsSwiper {
        padding: 0 var(--space-md);
        height: 600px;
    }
}

@media (max-width: 767px) {

    /* Mobilde başlık her zaman görünür, altında */
    .short-info {
        position: static;
        transform: none !important;
        background: white;
        padding: var(--space-sm);
    }

    .short-info h4 {
        color: var(--text-color);
    }

    .shortsSwiper .swiper-slide {
        transition: transform 0.4s ease, opacity 0.4s ease;
        transform: scale(0.88);
        opacity: 0.5;
    }

    .shortsSwiper .swiper-slide-active {
        transform: scale(1);
        opacity: 1;
        z-index: 2;
    }

    .short-card {
        border-radius: 16px;
        overflow: hidden;
        box-shadow: 0 10px 30px rgba(0,0,0,0.12);
        background: white;
    }

    .short-thumbnail {
        border-radius: 16px 16px 0 0;
        overflow: hidden;
    }
}

/* ====================================
   REVIEWS SECTION
   ==================================== */
.reviews {
    padding: var(--space-3xl) 0;
}

.reviews-iframe-container {
    min-height: 300px;
    border-radius: var(--border-radius-md);
    overflow: hidden;
}

.reviews-iframe-container iframe {
    width: 100%;
    border: none;
}

/* ====================================
   PROCESS SECTION
   ==================================== */
.process {
    padding: var(--space-3xl) 0;
    background: white;
}

.process-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: var(--space-lg);
}

.process-step {
    position: relative;
    padding: var(--space-lg);
    background: white;
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius-md);
    transition: all var(--transition-base);
}

.process-step:hover {
    border-color: var(--primary-color);
    box-shadow: var(--shadow-md);
    transform: translateY(-4px);
}

.step-number {
    font-size: 56px;
    font-weight: 700;
    color: rgba(9, 75, 133, 0.08);
    line-height: 1;
    margin-bottom: var(--space-sm);
}

.step-icon {
    width: 60px;
    height: 60px;
    margin-bottom: var(--space-md);
    display: flex;
    align-items: center;
    justify-content: center;
}

.step-icon svg,
.step-icon img {
    max-width: 100%;
    max-height: 100%;
}

.step-title {
    font-size: var(--font-size-lg);
    font-weight: 600;
    margin-bottom: var(--space-sm);
    color: var(--text-color);
}

.step-text {
    font-size: var(--font-size-sm);
    color: var(--text-light);
    line-height: 1.7;
}

@media (max-width: 1024px) {
    .process-grid {
        grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
        gap: var(--space-md);
    }
}

@media (max-width: 640px) {
    .process-grid { grid-template-columns: 1fr; }
    .step-number { font-size: 42px; }
}

/* ====================================
   DOCTOR / TEAM SECTION
   ==================================== */
.team-section-m {
    max-width: 1200px;
    margin: 0;
    padding-top: 90px;
    padding-bottom: 90px;
    justify-self: center;
}

.team-header-m {
    text-align: center;
    margin-bottom: 50px;
}

.team-subtitle-m {
    color: var(--primary-color);
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 10px;
}

.team-title-m {
    color: #1a1a1a;
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 20px;
}

.team-description-m {
    color: #666;
    font-size: 16px;
    line-height: 1.6;
    max-width: 800px;
    margin: 0 auto;
}

.team-grid-m {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    max-width: 900px;
    margin: 0 auto;
}

.team-card-m {
    background: #fff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    animation: fadeInUp 0.6s ease forwards;
}

.team-card-m:nth-child(2) {
    animation-delay: 0.2s;
}

.team-card-m:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(0,0,0,0.15);
}

.team-card-image-m {
    width: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.4s ease;
}

.team-card-m:hover .team-card-image-m {
    transform: scale(1.05);
}

.team-card-content-m {
    padding: 25px;
}

.team-card-role-m {
    color: var(--primary-color);
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 8px;
}

.team-card-name-m {
    color: #1a1a1a;
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 12px;
}

.team-card-bio-m {
    color: #555;
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 20px;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.team-card-bio-m.expanded {
    -webkit-line-clamp: unset;
}

.read-more-btn-m {
    background: var(--primary-color);
    color: #fff;
    border: none;
    padding: 12px 24px;
    border-radius: 25px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.read-more-btn-m:hover {
    background: var(--primary-hover);
    transform: translateX(4px);
}

.read-more-btn-m::after {
    content: '→';
    transition: transform 0.3s ease;
}

.read-more-btn-m:hover::after {
    transform: translateX(4px);
}

.read-more-btn-m.active::after {
    content: '↑';
}

@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(30px); }
    to   { opacity: 1; transform: translateY(0); }
}

@media (max-width: 768px) {
    .team-grid-m { grid-template-columns: 1fr; }
    .team-title-m { font-size: 28px; }
    .team-section-m { padding: 20px; }
}

/* ====================================
   FAQ SECTION
   ==================================== */
.faq {
    padding: var(--space-3xl) 0;
}

.faq-wrapper {
    max-width: 900px;
    margin: 0 auto;
    background: #a6c6d61c;
    border-radius: var(--border-radius-md);
    padding: var(--space-lg);
    box-shadow: var(--shadow-sm);
}

.faq-item {
    border-bottom: 1px solid var(--border-color);
    padding: var(--space-md) 0;
}

.faq-item:last-child {
    border-bottom: none;
}

.faq-question {
    width: 100%;
    background: none;
    border: none;
    padding: 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: var(--space-md);
    cursor: pointer;
    font-size: var(--font-size-md);
    font-weight: 600;
    color: var(--text-color);
    text-align: left;
    transition: color var(--transition-base);
}

.faq-question:hover {
    color: var(--primary-color);
}

.faq-question span {
    flex: 1;
}

.faq-icon {
    flex-shrink: 0;
    transition: transform var(--transition-base);
    color: var(--primary-color);
}

.faq-item.active .faq-icon {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height var(--transition-base), padding var(--transition-base);
}

.faq-item.active .faq-answer {
    max-height: 800px;
    padding-top: var(--space-sm);
}

.faq-answer p {
    font-size: var(--font-size-sm);
    color: var(--text-light);
    line-height: 1.8;
    margin: 0;
}

@media (max-width: 768px) {
    .faq-wrapper { padding: var(--space-md); }
    .faq-question { font-size: var(--font-size-sm); }
}

@media (max-width: 480px) {
    .faq-item { padding: var(--space-sm) 0; }
    .faq-question { gap: var(--space-sm); }
}

/* ====================================
   BLOG PREVIEW (anasayfadaki)
   ==================================== */
.blog-preview {
    padding: var(--space-3xl) 0;
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: var(--space-lg);
    margin-bottom: var(--space-xl);
}

.blog-card {
    background: white;
    border-radius: var(--border-radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: transform var(--transition-base), box-shadow var(--transition-base);
    display: flex;
    flex-direction: column;
}

.blog-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
}

.blog-image {
    width: 100%;
    aspect-ratio: 16 / 10;
    overflow: hidden;
    background: var(--bg-secondary);
}

.blog-image a {
    display: block;
    width: 100%;
    height: 100%;
}

.blog-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-base);
}

.blog-card:hover .blog-image img {
    transform: scale(1.05);
}

.blog-content {
    padding: var(--space-md);
    flex: 1;
    display: flex;
    flex-direction: column;
}

.blog-meta {
    display: flex;
    gap: var(--space-sm);
    margin-bottom: var(--space-sm);
    flex-wrap: wrap;
}

.blog-date,
.blog-category {
    font-size: var(--font-size-xs);
    color: var(--text-light);
    font-weight: 500;
}

.blog-category {
    color: var(--primary-color);
    font-weight: 600;
}

.blog-title {
    font-size: var(--font-size-lg);
    font-weight: 600;
    margin-bottom: 12px;
    line-height: 1.4;
}

.blog-title a {
    text-decoration: none;
    color: var(--text-color);
    transition: color var(--transition-base);
}

.blog-title a:hover {
    color: var(--primary-color);
}

.blog-excerpt {
    font-size: var(--font-size-sm);
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: var(--space-sm);
    flex: 1;
}

.blog-link {
    font-size: var(--font-size-sm);
    font-weight: 600;
    color: var(--primary-color);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 4px;
    transition: gap var(--transition-base);
}

.blog-link:hover {
    gap: 8px;
}

.blog-cta {
    text-align: center;
    margin-top: var(--space-xl);
}

@media (max-width: 1024px) {
    .blog-grid {
        grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
        gap: var(--space-md);
    }
}

@media (max-width: 640px) {
    .blog-grid { grid-template-columns: 1fr; }
}

/* ====================================
   OUR SERVICES (Anasayfa)
   ==================================== */
.our-services {
    padding: var(--space-3xl) 0;
    background: var(--bg-secondary);
    position: relative;
    overflow: hidden;
}

.our-services::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: radial-gradient(circle at 20% 30%, rgba(145, 175, 201, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 80% 70%, rgba(9, 75, 133, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

.our-services .section-description {
    font-size: var(--font-size-md);
    color: var(--text-light);
    margin-top: var(--space-sm);
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: var(--space-lg);
    margin-top: var(--space-xl);
}

.service-card {
    background: white;
    padding: var(--space-lg);
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-md);
    position: relative;
    overflow: hidden;
    transition: all var(--transition-base);
    z-index: 1;
    cursor: pointer;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: linear-gradient(135deg, rgba(9, 75, 133, 0.02), rgba(145, 175, 201, 0.02));
    opacity: 0;
    transition: opacity var(--transition-base);
}

.service-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 12px 36px rgba(0, 0, 0, 0.15);
}

.service-card:hover::before {
    opacity: 1;
}

.service-link {
    text-decoration: none;
    display: block;
}

.service-icon {
    width: 60px;
    height: 60px;
    margin-bottom: var(--space-md);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--border-radius-md);
    transition: transform var(--transition-base);
}

.service-card:hover .service-icon {
    transform: scale(1.1);
}

.service-icon img {
    width: 64px;
    height: 64px;
    object-fit: contain;
}

.service-content h3 {
    font-size: var(--font-size-lg);
    font-weight: 700;
    color: var(--text-color);
    margin-bottom: var(--space-sm);
    transition: color var(--transition-base);
}

.service-card:hover .service-content h3 {
    color: var(--primary-color);
}

.service-content p {
    font-size: var(--font-size-sm);
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: var(--space-sm);
}

.service-arrow {
    display: inline-block;
    font-size: var(--font-size-md);
    font-weight: 700;
    color: var(--primary-color);
    transition: transform var(--transition-base);
}

.service-card:hover .service-arrow {
    transform: translateX(6px);
}

@media (max-width: 1024px) {
    .services-grid { grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); }
}

@media (max-width: 640px) {
    .services-grid { grid-template-columns: 1fr; }
    .service-card { padding: var(--space-md); }
}

/* ── Service Card: buton için position relative ── */
.service-card {
    position: relative;
    padding-bottom: 72px; /* buton için altta yer aç */
}

/* ── Buton Wrapper: sol alta sabit ── */
.service-btn-wrap {
    position: absolute;
    bottom: 20px;
    left: 20px;
}

/* ── Buton: transparan, çerçeveli, border-radius 30px ── */
.service-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 9px 20px;
    background: transparent;
    border: 1.5px solid var(--primary-color);
    border-radius: 30px;
    color: var(--primary-color);
    font-size: 13px;
    font-weight: 600;
    font-family: inherit;
    text-decoration: none;
    transition: all 0.22s ease;
    white-space: nowrap;
}

.service-btn:hover {
    background: var(--primary-color);
    color: #fff;
    transform: translateX(3px);
}

.service-btn svg {
    transition: transform 0.2s ease;
    flex-shrink: 0;
}

.service-btn:hover svg {
    transform: translateX(3px);
}

.our-packages-m{
	background: linear-gradient(160deg, #060d2e 0%, #091151 60%, #0d1a6e 100%);
}
