   body {
       font-family: 'Space Grotesk', sans-serif;
   }

   h1,
   h2,
   h3,
   .font-headline {
       font-family: 'Space Grotesk', sans-serif;
   }

   :root {
       --brand-dark: #5d4037;
       --brand-mid: #6b3a28;
       --brand-accent: #8b4a2f;
       --brand-btn: #5c2d1e;
       --nav-link: #2c1810;
       --nav-hover: #8b4a2f;
       --bg-header: #ffffff;
   }


   /* ── NAVBAR ── */
   .navbar {
       background: var(--bg-header);
       border-bottom: 1px solid #ede0d8;
       padding: 0 0;
       min-height: 72px;
   }

   /* Logo */
   .navbar-brand {
       display: flex;
       align-items: center;
       gap: 10px;
   }

   .logo-circle {
       width: 52px;
       height: 52px;
       background: var(--brand-dark);
       border-radius: 50%;
       display: flex;
       align-items: center;
       justify-content: center;
       flex-shrink: 0;
   }

   .logo-circle svg {
       width: 30px;
       height: 30px;
       fill: #fff;
   }

   .logo-text {

       font-size: 1rem;
       font-weight: 700;
       color: var(--brand-dark);
       line-height: 1.2;
       letter-spacing: 0.01em;
   }

   .logo-text span {
       display: block;
       font-size: 0.6rem;
       font-weight: 500;
       letter-spacing: 0.18em;
       color: var(--brand-accent);

   }

   /* Nav links */
   .navbar-nav .nav-link {
       font-size: 0.78rem;
       font-weight: 600;
       letter-spacing: 0.09em;

       color: var(--nav-link);
       padding: 0.5rem 1.1rem;
       position: relative;
       transition: color 0.25s;
   }

   .navbar-nav .nav-link::after {
       content: '';
       position: absolute;
       bottom: -2px;
       left: 1.1rem;
       right: 1.1rem;
       height: 2px;
       background: var(--brand-accent);
       transform: scaleX(0);
       transition: transform 0.25s ease;
       border-radius: 1px;
   }

   .navbar-nav .nav-link:hover,
   .navbar-nav .nav-link.active {
       color: var(--nav-hover);
   }

   .navbar-nav .nav-link:hover::after,
   .navbar-nav .nav-link.active::after {
       transform: scaleX(1);
   }

   /* Active underline always visible */
   .navbar-nav .nav-link.active::after {
       transform: scaleX(1);
   }

   /* CTA Button */
   .btn-cta {
       background: var(--brand-btn);
       color: #fff !important;
       font-size: 0.82rem;
       font-weight: 700;
       letter-spacing: 0.06em;
       border: none;
       border-radius: 6px;
       padding: 0.65rem 1.4rem;
       display: flex;
       align-items: center;
       gap: 8px;
       transition: background 0.25s, transform 0.15s;
       white-space: nowrap;
       text-decoration: none;
   }

   .btn-cta i {
       font-size: 1rem;
   }

   .btn-cta:hover {
       background: var(--brand-dark);
       transform: translateY(-1px);
       color: #fff !important;
   }

   /* Mobile toggler */
   .navbar-toggler {
       border: 1.5px solid var(--brand-accent);
       border-radius: 5px;
   }

   .navbar-toggler-icon {
       background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3E%3Cpath stroke='%238b4a2f' stroke-width='2.2' d='M4 7h22M4 15h22M4 23h22'/%3E%3C/svg%3E");
   }

   /* Hero placeholder (sadece arka plan gösterimi) */
   .hero-placeholder {
       height: 90px;
       background: linear-gradient(135deg, #f5ede8 0%, #ede0d8 60%, #d4bfb3 100%);
   }


   /* ── HERO ── */
   .hero-section {
       position: relative;
       min-height: 100vh;
       display: flex;
       align-items: center;
       overflow: hidden;
       padding: 0px 0 0px;
   }

   /* Arka plan fotoğrafı */
   .hero-bg {
       position: absolute;
       inset: 0;
       background: url('images/can-yol-yardim-1.webp') center center / cover no-repeat;
       z-index: 0;
   }

   /* Fotoğrafın üstüne hafif krem overlay */
   .hero-bg::after {
       content: '';
       position: absolute;
       inset: 0;
       background: #faf7f2ed;
   }

   .hero-section .container-xxl {
       position: relative;
       z-index: 1;
           padding: 40px;
   }

   /* Badge */
   .hero-badge {
       display: inline-flex;
       align-items: center;
       gap: 8px;
       background: #fff;
       border: 1px solid #e2d0c4;
       border-radius: 50px;
       padding: 6px 16px 6px 10px;

       font-size: 0.9rem;
       font-weight: 700;
       color: var(--brand-dark);

       margin-bottom: 28px;
       box-shadow: 0 2px 8px rgba(60, 30, 20, 0.07);
   }

   /* Animasyonlu yeşil nokta */
   .hero-badge .dot {
       position: relative;
       width: 10px;
       height: 10px;
       flex-shrink: 0;
   }

   .hero-badge .dot::before,
   .hero-badge .dot::after {
       content: '';
       position: absolute;
       inset: 0;
       border-radius: 50%;
   }

   .hero-badge .dot::before {
       background: #22c55e;
       z-index: 1;
   }

   .hero-badge .dot::after {
       background: #22c55e;
       animation: pulse-ring 1.8s ease-out infinite;
       z-index: 0;
   }

   @keyframes pulse-ring {
       0% {
           transform: scale(1);
           opacity: 0.7;
       }

       100% {
           transform: scale(2.8);
           opacity: 0;
       }
   }

   /* Headline */
   .hero-headline {
       font-size: clamp(2.6rem, 5.5vw, 4.4rem);
       font-weight: 800;
       color: var(--brand-dark);
       line-height: 1.08;
       letter-spacing: -0.02em;
       margin-bottom: 24px;
   }

   /* Sub text */
   .hero-sub {

       font-size: 1rem;
       font-weight: 400;
       color: #6b4c3b;
       line-height: 1.75;
       max-width: 480px;
       margin-bottom: 40px;
   }

   /* Butonlar */
   /* Sinyal animasyonu wrapper */
   .hero-btn-primary-wrap {
       position: relative;
       display: inline-flex;
   }

   .hero-btn-primary {
       background: #21c55e;
       color: #fff !important;
       font-size: 1.125rem;
       font-weight: 700;
       border: none;
       border-radius: 10px;
       padding: 0.9rem 2rem;
       display: inline-flex;
       align-items: center;
       gap: 10px;
       text-decoration: none;
       position: relative;
       z-index: 1;
       animation: pulse 2s infinite;
       transition: background 0.25s, transform 0.15s;
   }

   @keyframes pulse {
       0% {
           box-shadow: 0 0 0 0px rgba(92, 45, 30, 0.55);
       }

       70% {
           box-shadow: 0 0 0 14px rgba(92, 45, 30, 0);
       }

       100% {
           box-shadow: 0 0 0 0px rgba(92, 45, 30, 0);
       }
   }

   .hero-btn-primary:hover {
       background: var(--brand-accent);
       transform: translateY(-2px);
       color: #fff !important;
       animation: none;
   }

   .hero-btn-secondary {
       background: #fff;
       color: var(--brand-dark) !important;
       font-size: 1.125rem;
       font-weight: 700;
       border: 1.5px solid #d4bfb3;
       border-radius: 8px;
       padding: 0.9rem 2rem;
       display: inline-flex;
       align-items: center;
       text-decoration: none;
       transition: border-color 0.25s, transform 0.15s, box-shadow 0.25s;
   }

   .hero-btn-secondary:hover {
       border-color: var(--brand-accent);
       color: var(--brand-accent) !important;
       transform: translateY(-2px);
       box-shadow: 0 4px 16px rgba(60, 30, 20, 0.08);
   }

   /* Stat Cards */
   .hero-cards-col {
       display: flex;
       flex-direction: column;
       gap: 18px;
   }

   .hero-cards-top {
       display: grid;
       grid-template-columns: 1fr 1fr;
       gap: 18px;
   }

   .stat-card {
       background: #fff;
       border-radius: 18px;
       padding: 28px 30px;
       box-shadow: 0 8px 32px rgba(60, 30, 20, 0.09);
   }

   .stat-card.dark {
       background: var(--brand-dark);
       position: relative;
       overflow: hidden;
   }

   .stat-card.dark::before {
       content: '';
       position: absolute;
       inset: 0;
       background-image: radial-gradient(circle, rgba(255, 255, 255, 0.1) 1px, transparent 1px);
       background-size: 18px 18px;
       pointer-events: none;
   }

   .stat-card-icon {
       font-size: 1.5rem;
       color: #a07060;
       margin-bottom: 16px;
       display: block;
   }

   .stat-card.dark .stat-card-icon {
       color: rgba(255, 255, 255, 0.55);
   }

   .stat-number {
       font-size: 2.6rem;
       font-weight: 800;
       color: var(--brand-dark);
       line-height: 1;
       letter-spacing: -0.03em;
   }

   .stat-card.dark .stat-number {
       color: #fff;
   }

   .stat-label {
       font-size: 0.9rem;
       font-weight: 700;
       color: #a07060;
       margin-top: 6px;
   }

   .stat-card.dark .stat-label {
       color: rgba(255, 255, 255, 0.55);
   }

   /* Activity card */
   .activity-card {
       background: #fff;
       border-radius: 18px;
       padding: 20px 26px;
       box-shadow: 0 8px 32px rgba(60, 30, 20, 0.09);
   }

   .activity-avatars {
       display: flex;
       align-items: center;
   }

   .avatar-chip {
       width: 34px;
       height: 34px;
       border-radius: 50%;
       border: 2.5px solid #fff;
       display: flex;
       align-items: center;
       justify-content: center;
       font-size: 0.58rem;
       font-weight: 700;
       color: #fff;
       margin-right: -10px;
       flex-shrink: 0;
   }

   .avatar-chip:nth-child(1) {
       background: #8b4a2f;
   }

   .avatar-chip:nth-child(2) {
       background: #a06040;
   }

   .avatar-chip:nth-child(3) {
       background: #c07050;
   }

   .activity-text {
       font-weight: 600;
       color: var(--brand-dark);
   }

   .activity-sub {
       font-size: 0.62rem;
       font-weight: 700;
       letter-spacing: 0.13em;

       color: #a07060;
       margin-top: 10px;
   }

   .activity-sub .live-dot {
       display: inline-block;
       width: 7px;
       height: 7px;
       background: #22c55e;
       border-radius: 50%;
       margin-right: 5px;
       animation: blink 1.4s ease-in-out infinite;
   }

   @keyframes blink {

       0%,
       100% {
           opacity: 1;
       }

       50% {
           opacity: 0.2;
       }
   }



   /* ── SERVICES SECTION ── */
   .services-section {
       background: var(--bg-section);
       padding: 90px 0 100px;
   }

   /* Başlık */
   .services-title {
       font-size: clamp(2rem, 4vw, 3rem);
       font-weight: 800;
       color: var(--brand-dark);
       line-height: 1.1;
       margin-bottom: 14px;
   }

   .services-title span {
       color: var(--brand-accent);
   }

   .services-sub {
       font-weight: 400;
       color: #7a5a4a;
       margin-bottom: 0;
   }

   /* Ayraç çizgi */
   .services-divider {
       border: none;
       border-top: 1.5px solid #ddd0c4;
       margin: 0;
       flex: 1;
       align-self: center;
   }

   /* Kart */
   .service-card {
       background: #fff;
       border-radius: 20px;
       padding: 36px 30px 30px;
       height: 100%;
       border: 1px solid #5c2d1d;
       transition: border-color 0.25s, box-shadow 0.25s, transform 0.25s;
       cursor: pointer;
   }

   .service-card:hover {
       border-color: #d4bfb3;
       box-shadow: 0 12px 40px rgba(60, 30, 20, 0.10);
       transform: translateY(-4px);
   }

   /* İkon kutusu */
   .service-icon-box {
       width: 64px;
       height: 64px;
       background: #f0e8e0;
       border-radius: 14px;
       display: flex;
       align-items: center;
       justify-content: center;
       margin-bottom: 32px;
       transition: background 0.25s;
   }

   .service-card:hover .service-icon-box {
       background: #e8d8cc;
   }

   .service-icon-box i {
       font-size: 1.6rem;
       color: var(--brand-dark);
   }

   /* Kart başlık */
   .service-card-title {
       font-weight: 700;
       color: var(--brand-dark);
       margin-bottom: 12px;
       line-height: 1.3;
   }

   /* Kart metin */
   .service-card-text {
       font-weight: 400;
       color: #7a5a4a;
       line-height: 1.7;
       margin-bottom: 28px;
   }

   /* Detaylı Bilgi linki */
   .service-card-link {
       font-weight: 700;
       color: var(--brand-dark);
       text-decoration: none;
       display: inline-flex;
       align-items: center;
       gap: 6px;
       transition: gap 0.2s, color 0.2s;
   }

   .service-card-link:hover {
       color: var(--brand-accent);
       gap: 10px;
   }

   .service-card-link i {
       font-size: 0.85rem;
   }


   /* ── TEAM SECTION ── */
   .team-section {
       background: #faf7f2;
       padding: 90px 0 100px;
   }

   /* Üst etiket */
   .team-label {
       font-weight: 700;
       letter-spacing: 0.22em;
       
       color: var(--brand-accent);
       margin-bottom: 14px;
   }

   /* Başlık */
   .team-title {
       font-size: clamp(2rem, 4vw, 3rem);
       font-weight: 800;
       color: var(--brand-dark);
       line-height: 1.1;
       margin-bottom: 18px;
   }

   .team-title span {
       color: var(--brand-accent);
   }

   /* Alt çizgi */
   .team-underline {
       width: 72px;
       height: 3px;
       background: var(--brand-dark);
       border-radius: 2px;
       margin: 0 auto 60px;
   }

   /* ── Kart ── */
   .team-card {
       background: #fff;
       border-radius: 20px;
       overflow: hidden;
       height: 100%;
       border: 1px solid transparent;
       transition: border-color 0.25s, box-shadow 0.25s, transform 0.25s;
   }

   .team-card:hover {
       border-color: #d4bfb3;
       box-shadow: 0 12px 40px rgba(60, 30, 20, 0.10);
       transform: translateY(-4px);
   }

   /* Fotoğraf alanı */
   .team-card-img {
       position: relative;
       width: 100%;
       aspect-ratio: 4 / 3;
       overflow: hidden;
       background: #ede4da;
   }

   .team-card-img img {
       width: 100%;
       height: 100%;
       object-fit: cover;
       display: block;
   }

   /* Online / Offline badge */
   .team-status {
       position: absolute;
       bottom: 14px;
       right: 14px;
       display: inline-flex;
       align-items: center;
       gap: 6px;
       background: #fff;
       border-radius: 50px;
       padding: 5px 12px;
       font-size: 0.8rem;
       font-weight: 700;
       color: #7a5a4a;
       box-shadow: 0 2px 8px rgba(60, 30, 20, 0.08);
   }

   .team-status .status-dot {
       width: 7px;
       height: 7px;
       border-radius: 50%;
       flex-shrink: 0;
   }

   .team-status.online .status-dot {
       background: #22c55e;
   }

   .team-status.offline .status-dot {
       background: #c4b8b0;
   }

   /* Kart alt bilgi */
   .team-card-body {
       padding: 24px 24px 28px;
   }

   .team-card-name {
       font-size: 1.05rem;
       font-weight: 700;
       color: var(--brand-dark);
       margin-bottom: 4px;
   }

   .team-card-role {
       font-size: 0.82rem;
       font-weight: 500;
       color: #9a7060;
       margin-bottom: 16px;
   }

   .team-card-exp {
       display: inline-flex;
       align-items: center;
       gap: 6px;
       font-size: 0.68rem;
       font-weight: 700;
       letter-spacing: 0.1em;
       
       color: #7a5a4a;
   }

   .team-card-exp i {
       font-size: 0.9rem;
       color: var(--brand-accent);
   }

   /* Offline kart soluk görünüm */
   .team-card.is-offline .team-card-img img {
       filter: grayscale(40%) opacity(0.75);
   }


   /* ── TESTIMONIALS SECTION ── */
   .testimonials-section {
       background: var(--bg-section);
       padding: 90px 0 100px;
   }

   /* Üst etiket */
   .testimonials-label {
       font-weight: 700;
       letter-spacing: 0.22em;
       
       color: var(--brand-accent);
       margin-bottom: 12px;
   }

   /* Başlık */
   .testimonials-title {
       font-size: clamp(2rem, 4vw, 3rem);
       font-weight: 800;
       color: var(--brand-dark);
       line-height: 1.15;
       margin-bottom: 56px;
   }

   .testimonials-title em {
       font-style: italic;
       font-weight: 700;
       color: var(--brand-dark);
   }

   /* ── Kart ── */
   .review-card {
       background: #fff;
       border-radius: 20px;
       padding: 36px 32px 32px;
       height: 100%;
       position: relative;
       border: 1px solid #5c2d1d;
       transition: border-color 0.25s, box-shadow 0.25s, transform 0.25s;
   }

   .review-card:hover {
       border-color: #d4bfb3;
       box-shadow: 0 12px 40px rgba(60, 30, 20, 0.10);
       transform: translateY(-4px);
   }

   /* Orta kart biraz daha büyük gölge */
   .review-card.featured {
       box-shadow: 0 8px 32px rgba(60, 30, 20, 0.09);
   }

   /* Tırnak işareti */
   .review-quote {
       position: absolute;
       top: 28px;
       right: 28px;
       font-size: 5rem;
       line-height: 1;
       color: #e8ddd5;
       font-style: italic;
       user-select: none;
       pointer-events: none;
   }

   /* Yıldızlar */
   .review-stars {
       display: flex;
       gap: 4px;
       margin-bottom: 20px;
   }

   .review-stars i {
       font-size: 1rem;
       color: var(--brand-dark);
   }

   /* Son yıldız (5. yıldız yarım değil tam ama soluk) */

   /* Yorum metni */
   .review-text {
       font-size: 0.9rem;
       font-weight: 400;
       font-style: italic;
       color: #5a3c2c;
       line-height: 1.75;
       margin-bottom: 28px;
       position: relative;
       z-index: 1;
   }

   /* Avatar + isim */
   .review-author {
       display: flex;
       align-items: center;
       gap: 12px;
   }

   .review-avatar {
       width: 44px;
       height: 44px;
       border-radius: 50%;
       background: #e0d0c4;
       display: flex;
       align-items: center;
       justify-content: center;
       font-size: 0.7rem;
       font-weight: 700;
       color: var(--brand-dark);
       flex-shrink: 0;
       letter-spacing: 0.04em;
   }

   .review-author-name {
       font-size: 0.88rem;
       font-weight: 700;
       color: var(--brand-dark);
       margin-bottom: 2px;
   }

   .review-author-role {
       font-size: 0.8rem;
       font-weight: 700;
       color: #9a7a6a;
   }


       /* ── GALLERY SECTION ── */
    .gallery-section {
      background: #faf7f2;
      padding: 90px 0 100px;
    }

    /* Üst etiket */
    .gallery-label {
      font-weight: 700;
      letter-spacing: 0.22em;
      
      color: var(--brand-accent);
      margin-bottom: 12px;
    }

    /* Başlık */
    .gallery-title {
      font-size: clamp(2rem, 4vw, 3rem);
      font-weight: 800;
      color: var(--brand-dark);
      line-height: 1.1;
      margin-bottom: 14px;
    }
    .gallery-title em {
      font-style: italic;
      font-weight: 700;
    }

    .gallery-sub {
      font-size: 0.92rem;
      color: #7a5a4a;
      font-weight: 400;
      margin-bottom: 52px;
    }

    /* ── Grid ── */
    .gallery-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 16px;
    }

    /* Her hücre */
    .gallery-item {
      position: relative;
      border-radius: 16px;
      overflow: hidden;
      aspect-ratio: 4 / 3;
      background: #ddd0c4;
      cursor: pointer;
    }

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

    /* Hover overlay */
    .gallery-overlay {
      position: absolute;
      inset: 0;
      background: linear-gradient(
        to top,
        rgba(40, 18, 10, 0.72) 0%,
        rgba(40, 18, 10, 0.18) 50%,
        transparent 100%
      );
      opacity: 0;
      transition: opacity 0.35s ease;
      display: flex;
      flex-direction: column;
      justify-content: flex-end;
      padding: 24px 22px;
    }

    .gallery-item:hover img {
      transform: scale(1.07);
    }
    .gallery-item:hover .gallery-overlay {
      opacity: 1;
    }

    /* Overlay içerik */
    .gallery-overlay-title {
      font-weight: 700;
      color: #fff;
      margin-bottom: 4px;
      transform: translateY(8px);
      transition: transform 0.35s ease;
    }
    .gallery-overlay-tag {
      font-weight: 600;
      color: rgba(255,255,255,0.65);
      transform: translateY(8px);
      transition: transform 0.35s ease 0.04s;
    }
    .gallery-item:hover .gallery-overlay-title,
    .gallery-item:hover .gallery-overlay-tag {
      transform: translateY(0);
    }

    /* Zoom ikonu */
    .gallery-overlay-icon {
      position: absolute;
      top: 16px;
      right: 16px;
      width: 36px;
      height: 36px;
      background: rgba(255,255,255,0.15);
      border: 1.5px solid rgba(255,255,255,0.35);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      color: #fff;
      font-size: 0.9rem;
      opacity: 0;
      transform: scale(0.7);
      transition: opacity 0.3s ease, transform 0.3s ease;
      backdrop-filter: blur(4px);
    }
    .gallery-item:hover .gallery-overlay-icon {
      opacity: 1;
      transform: scale(1);
    }

    /* Responsive */
    @media (max-width: 768px) {
      .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
      }
    }
    @media (max-width: 480px) {
      .gallery-grid {
        grid-template-columns: 1fr;
      }
    }


        /* ── BLOG SECTION ── */
    .blog-section {
      background: var(--bg-section);
      padding: 90px 0 100px;
    }

    /* Başlık satırı */
    .blog-title {
      font-size: clamp(1.8rem, 3.5vw, 2.6rem);
      font-weight: 800;
      color: var(--brand-dark);
      line-height: 1.1;
      margin-bottom: 0;
    }
    .blog-title span {
      color: var(--brand-accent);
    }

    .blog-all-link {
      font-size: 0.8rem;
      font-weight: 700;
      letter-spacing: 0.05em;
      color: var(--brand-dark);
      text-decoration: none;
      display: inline-flex;
      align-items: center;
      gap: 6px;
      white-space: nowrap;
      transition: gap 0.2s, color 0.2s;
    }
    .blog-all-link:hover {
      color: var(--brand-accent);
      gap: 10px;
    }
    .blog-all-link i { font-size: 0.9rem; }

    /* ── Kart ── */
    .blog-card {
      background: #fff;
      border-radius: 20px;
      overflow: hidden;
      height: 100%;
      border: 1px solid #5c2d1d;
      transition: border-color 0.25s, box-shadow 0.25s, transform 0.25s;
    }
    .blog-card:hover {
      border-color: #d4bfb3;
      box-shadow: 0 12px 40px rgba(60,30,20,0.10);
      transform: translateY(-4px);
    }

    /* Görsel alanı */
    .blog-card-img {
      position: relative;
      width: 100%;
      aspect-ratio: 4 / 3;
      overflow: hidden;
      background: #2a2a2a;
    }
    .blog-card-img img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      object-position: top center;
      display: block;
      transition: transform 0.45s ease;
    }
    .blog-card:hover .blog-card-img img {
      transform: scale(1.05);
    }

    /* Kategori badge */
    .blog-cat {
      position: absolute;
      top: 14px;
      left: 14px;
      background: rgba(40, 18, 10, 0.72);
      backdrop-filter: blur(6px);
      color: #fff;
      font-size: 0.6rem;
      font-weight: 700;
      letter-spacing: 0.16em;
      
      padding: 5px 12px;
      border-radius: 50px;
    }

    /* Kart body */
    .blog-card-body {
      padding: 28px 28px 30px;
    }

    .blog-card-title {
      font-size: 1.05rem;
      font-weight: 700;
      color: var(--brand-dark);
      margin-bottom: 10px;
      line-height: 1.35;
    }

    .blog-card-text {
      font-size: 0.84rem;
      font-weight: 400;
      color: #7a5a4a;
      line-height: 1.7;
      margin-bottom: 22px;
    }

    .blog-card-link {
      font-size: 0.78rem;
      font-weight: 700;
      letter-spacing: 0.04em;
      color: var(--brand-dark);
      text-decoration: none;
      display: inline-flex;
      align-items: center;
      gap: 6px;
      transition: gap 0.2s, color 0.2s;
    }
    .blog-card-link:hover {
      color: var(--brand-accent);
      gap: 10px;
    }
    .blog-card-link i { font-size: 0.85rem; }


       /* ── CTA SECTION ── */
    .cta-section {
      background: #faf7f2;
      padding: 80px 0 100px;
    }

    /* Koyu yuvarlak kutu */
    .cta-box {
      background: var(--brand-dark);
      border-radius: 28px;
      padding: 80px 40px;
      text-align: center;
      position: relative;
      overflow: hidden;
    }

    /* Hafif doku — nokta pattern */
    .cta-box::before {
      content: '';
      position: absolute;
      inset: 0;
      background-image: radial-gradient(circle, rgba(255,255,255,0.04) 1px, transparent 1px);
      background-size: 24px 24px;
      pointer-events: none;
    }

    /* Başlık */
    .cta-title {
      font-size: clamp(2.2rem, 5vw, 4rem);
      font-weight: 900;
      color: #fff;
      line-height: 1.05;
      letter-spacing: -0.01em;
      
      margin-bottom: 20px;
      position: relative;
      z-index: 1;
    }

    /* Alt metin */
    .cta-sub {
      font-size: 0.95rem;
      font-weight: 400;
      color: rgba(255,255,255,0.65);
      line-height: 1.7;
      max-width: 480px;
      margin: 0 auto 44px;
      position: relative;
      z-index: 1;
    }

    /* Butonlar */
    .cta-btns {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 16px;
      flex-wrap: wrap;
      position: relative;
      z-index: 1;
    }

    /* Telefon butonu (beyaz) */
    .cta-btn-phone {
      background: #fff;
      color: var(--brand-dark) !important;
      font-family: 'Montserrat', sans-serif;
      font-size: 0.95rem;
      font-weight: 700;
      letter-spacing: 0.03em;
      border: none;
      border-radius: 12px;
      padding: 1rem 2.2rem;
      display: inline-flex;
      align-items: center;
      gap: 10px;
      text-decoration: none;
      transition: background 0.25s, transform 0.15s, box-shadow 0.25s;
      min-width: 220px;
      justify-content: center;
    }
    .cta-btn-phone i {
      font-size: 1.1rem;
      color: var(--brand-dark);
    }
    .cta-btn-phone:hover {
      background: #f0e8e0;
      transform: translateY(-2px);
      box-shadow: 0 8px 24px rgba(0,0,0,0.15);
      color: var(--brand-dark) !important;
    }

    /* WhatsApp butonu (orta kahve) */
    .cta-btn-wp {
  background: #25d366;
      color: #fff !important;
      font-family: 'Montserrat', sans-serif;
      font-size: 0.95rem;
      font-weight: 700;
      letter-spacing: 0.03em;
      border: none;
      border-radius: 12px;
      padding: 1rem 2.2rem;
      display: inline-flex;
      align-items: center;
      gap: 10px;
      text-decoration: none;
      transition: background 0.25s, transform 0.15s, box-shadow 0.25s;
      min-width: 220px;
      justify-content: center;
    }
    .cta-btn-wp i {
      font-size: 1.1rem;
    }
    .cta-btn-wp:hover {
  background: #1ebe5d;
      transform: translateY(-2px);
      box-shadow: 0 8px 24px rgba(0,0,0,0.2);
      color: #fff !important;
    }


.seo-section {
  background: #eee6dc;
  padding: 80px 0 90px;
  border-top: 1px solid #ddd0c4;
}

.seo-inner { }

.seo-label {
  font-weight: 700;
  color: var(--brand-accent);
  margin-bottom: 12px;
}

.seo-title {
  font-size: clamp(1.4rem, 2.5vw, 2rem);
  font-weight: 800;
  color: var(--brand-dark);
  line-height: 1.2;
  margin-bottom: 28px;
}
.seo-title span { color: var(--brand-accent); }

/* Bölge etiketleri */
.seo-tags {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.seo-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #fff;
  border: 1px solid #d4bfb3;
  border-radius: 8px;
  padding: 8px 14px;
  font-weight: 600;
  color: var(--brand-dark);
  width: fit-content;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.seo-tag:hover {
  border-color: var(--brand-accent);
  box-shadow: 0 2px 10px rgba(60,30,20,0.08);
}
.seo-tag i {
  color: var(--brand-accent);
  font-size: 0.8rem;
}

/* Yazı içeriği */
.seo-content p {
  font-weight: 400;
  color: #5a3c2c;
  line-height: 1.85;
  margin-bottom: 18px;
}
.seo-content p:last-child { margin-bottom: 0; }
.seo-content strong {
  font-weight: 700;
  color: var(--brand-dark);
}

@media (max-width: 991px) {
  .seo-tags { flex-direction: row; flex-wrap: wrap; }
}


  /* ── Floating Trigger ── */
  .floating-trigger {
    position: fixed;
    bottom: 28px;
    right: 28px;
    width: 62px;
    height: 62px;
    border-radius: 50%;
    background: #21c55e;
    border: none;
    color: #fff;
    font-size: 1.4rem;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 6px 24px rgba(40,18,10,0.35);
    z-index: 9998;
    animation: pulse 2s infinite;
    transition: background 0.25s, transform 0.2s;
  }
  .floating-trigger:hover  { background: var(--brand-accent); transform: scale(1.08); animation: none; }
  .floating-trigger.is-open { background: #777; animation: none; }

  @keyframes pulse {
    0%   { box-shadow: 0 0 0 0px rgba(92,45,30,0.55); }
    70%  { box-shadow: 0 0 0 16px rgba(92,45,30,0); }
    100% { box-shadow: 0 0 0 0px rgba(92,45,30,0); }
  }

  /* ── Overlay ── */
  .floating-overlay {
    position: fixed;
    inset: 0;
    background: rgba(20,8,4,0.55);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    z-index: 9999;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
  }
  .floating-overlay.is-open { opacity: 1; pointer-events: auto; }

  /* ── Popup (bottom sheet) ── */
  .floating-popup {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 10000;
    background: #f5efe8;
    border-radius: 28px 28px 0 0;
    padding: 40px 24px 52px;
    text-align: center;
    transform: translateY(100%);
    transition: transform 0.38s cubic-bezier(0.32, 0.72, 0, 1);
  }
  .floating-popup.is-open { transform: translateY(0); }

  /* Drag handle */
  .floating-popup::before {
    content: '';
    position: absolute;
    top: 12px;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 4px;
    background: #d4bfb3;
    border-radius: 2px;
  }

  /* Kapat butonu */
  .popup-close {
    position: absolute;
    top: 18px;
    right: 18px;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    border: none;
    background: #ede4da;
    color: #3b1f14;
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background 0.2s;
  }
  .popup-close:hover { background: #ddd0c4; }

  /* İkon */
  .popup-icon-wrap {
    width: 72px;
    height: 72px;
    background: #3b1f14;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 1.8rem;
    color: #fff;
  }

  /* Başlık */
  .popup-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.75rem;
    font-weight: 800;
    color: #3b1f14;
    line-height: 1.15;
    margin-bottom: 10px;
  }
  .popup-title span { color: #8b4a2f; }

  .popup-sub {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.9rem;
    color: #7a5a4a;
    line-height: 1.65;
    margin-bottom: 32px;
  }
  .popup-sub strong { color: #3b1f14; font-weight: 700; }

  /* ── Butonlar ── */
  .popup-actions { display: flex; flex-direction: column; gap: 14px; margin-bottom: 26px; }

  .popup-btn {
    display: flex;
    align-items: center;
    gap: 16px;
    border-radius: 18px;
    padding: 18px 22px;
    text-decoration: none;
    text-align: left;
    transition: transform 0.15s, box-shadow 0.15s;
    box-shadow: 0 4px 18px rgba(0,0,0,0.12);
  }
  .popup-btn:active { transform: scale(0.97); }

  .popup-btn-phone { background: #3b1f14; }
  .popup-btn-wp    { background: #25d366; }

  .popup-btn-icon {
    width: 50px;
    height: 50px;
    border-radius: 14px;
    background: rgba(255,255,255,0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.35rem;
    color: #fff;
    flex-shrink: 0;
  }

  .popup-btn-text {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 4px;
  }
  .popup-btn-label {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.65rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    
    color: rgba(255,255,255,0.65);
  }
  .popup-btn-value {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.1rem;
    font-weight: 800;
    color: #fff;
    letter-spacing: -0.01em;
  }

  .popup-btn-arrow {
    font-size: 0.95rem;
    color: rgba(255,255,255,0.45);
    flex-shrink: 0;
  }

  /* Alt not */
  .popup-note {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    
    color: #9a7a6a;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 7px;
    margin: 0;
  }
  .live-dot {
    display: inline-block;
    width: 8px; height: 8px;
    background: #22c55e;
    border-radius: 50%;
    flex-shrink: 0;
    animation: blink 1.4s ease-in-out infinite;
  }
  @keyframes blink { 0%,100%{opacity:1} 50%{opacity:0.25} }

  /* ── Responsive ── */
  @media (max-width: 480px) {
    .floating-trigger { bottom: 20px; right: 16px; width: 56px; height: 56px; font-size: 1.2rem; }
    .floating-popup { padding: 36px 16px 44px; }
    .popup-title { font-size: 1.5rem; }
    .popup-btn-value { font-size: 1rem; }
  }

        /* ── FOOTER ── */
    .footer {
      background: var(--brand-dark);
      padding: 70px 0 0;
      position: relative;
      overflow: hidden;
    }

    /* Hafif doku */
    .footer::before {
      content: '';
      position: absolute;
      inset: 0;
      background-image: radial-gradient(circle, rgba(255,255,255,0.03) 1px, transparent 1px);
      background-size: 22px 22px;
      pointer-events: none;
    }

    /* Logo kutusu */
    .footer-logo {
      background: #fff;
      border-radius: 10px;
      padding: 8px 12px;
      display: inline-flex;
      align-items: center;
      gap: 8px;
      margin-bottom: 22px;
    }
    .footer-logo-circle {
      width: 38px;
      height: 38px;
      background: var(--brand-dark);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      flex-shrink: 0;
    }
    .footer-logo-circle svg {
      width: 22px;
      height: 22px;
    }
    .footer-logo-text {
      font-weight: 800;
      color: var(--brand-dark);
    }
    .footer-logo-text span {
      display: block;
      font-weight: 500;
      letter-spacing: 0.1em;
      color: var(--brand-accent);
      
    }

    /* Açıklama */
    .footer-desc {
      font-weight: 400;
      color: rgb(255, 255, 255);
      line-height: 1.75;
      text-align: center;
    }

    /* Kolon başlıkları */
    .footer-col-title {
      font-weight: 700;
      color: rgba(255,255,255,0.9);
      margin-bottom: 0px;
    }

    /* Linkler */
    .footer-links {
      list-style: none;
      padding: 0;
      margin: 0;
      display: flex;
      flex-direction: column;
      gap: 0px;
    }
    .footer-links a {
      font-size: 0.88rem;
      font-weight: 500;
      color: rgb(255, 255, 255);
      text-decoration: none;
      transition: color 0.2s;
    }
    .footer-links a:hover {
      color: #fff;
    }

    /* Acil hat kartı */
    .footer-contact-card {
      border-radius: 18px;
      position: relative;
      z-index: 1;
    }

    .footer-contact-label {
      font-weight: 700;
      color: rgb(255, 255, 255);
      margin-bottom: 10px;
    }

    .footer-contact-phone {
    font-size: 1.65rem;
    font-weight: 800;
    color: #fff;
    letter-spacing: -0.02em;
    margin-bottom: 10px;
    line-height: 1;
    width: fit-content;
    margin: 0 auto;

    }

    .footer-contact-note {
      font-size: 0.6rem;
      font-weight: 700;
      letter-spacing: 0.12em;
      
      color: rgba(255,255,255,0.4);
      margin-bottom: 24px;
    }

    /* Mesaj Gönder butonu */
    .footer-contact-btn {
      display: block;
      width: 100%;
      background: #fff;
      color: var(--brand-dark) !important;
      font-family: 'Montserrat', sans-serif;
      font-weight: 800;
      letter-spacing: 0.12em;
      
      text-align: center;
      text-decoration: none;
      border-radius: 10px;
      padding: 0.85rem 1rem;
      transition: background 0.25s, transform 0.15s;
    }
    .footer-contact-btn:hover {
      background: #f0e8e0;
      transform: translateY(-1px);
      color: var(--brand-dark) !important;
    }

    /* Ayraç */
    .footer-divider {
      border: none;
      border-top: 1px solid rgba(255,255,255,0.1);
      margin: 56px 0 0;
    }

    /* Alt bar */
    .footer-bottom {
      padding: 20px 0;
      position: relative;
      z-index: 1;
    }
    .footer-copy {
      font-weight: 500;
      color: rgb(255, 255, 255);
      
    }
    .footer-bottom-links {
      display: flex;
      gap: 28px;
    }
    .footer-bottom-links a {
      font-weight: 600;
      
      color: rgb(255, 255, 255);
      text-decoration: none;
      transition: color 0.2s;
    }
    .footer-bottom-links a:hover {
      color: rgba(255,255,255,0.75);
    }
    

    @media (max-width: 576px) {
  .hero-btn-primary,
  .hero-btn-secondary {
    width: 100%;
    justify-content: center;
  }
}

@media (max-width: 576px) {
  .hero-btn-primary-wrap,
  .hero-btn-primary,
  .hero-btn-secondary {
    width: 100%;
    justify-content: center;
  }
}


.btn-offcanvas {
  background: #8b4a2f;
  border: 1.5px solid var(--brand-accent);
  border-radius: 8px;
  color: #ffffff;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  cursor: pointer;
  transition: background 0.2s;
}
.btn-offcanvas:hover {
  background: #412113;
}

.h-75 {
    height: 90% !important;
}


/* Offcanvas Nav */
.offcanvas-nav { display: flex; flex-direction: column; gap: 4px; }

.offcanvas-link {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 13px 16px;
  border-radius: 12px;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--brand-dark);
  text-decoration: none;
  transition: background 0.2s, color 0.2s;
}
.offcanvas-link i { font-size: 1rem; color: var(--brand-accent); width: 20px; text-align: center; }
.offcanvas-link:hover { background: #f0e8e0; color: var(--brand-accent); }
.offcanvas-link.active { background: #f0e8e0; color: var(--brand-accent); font-weight: 700; }

.offcanvas-divider { border-color: #ede0d8; margin: 0 0 20px; }

/* Offcanvas Butonlar */
.offcanvas-btn {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px 20px;
  border-radius: 14px;
  text-decoration: none;
  transition: transform 0.15s;
}
.offcanvas-btn:active { transform: scale(0.98); }
.offcanvas-btn i { font-size: 1.4rem; color: #fff; flex-shrink: 0; }

.offcanvas-btn-phone { background: var(--brand-dark); }
.offcanvas-btn-wp    { background: #25d366; }

.offcanvas-btn-label {
  display: block;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.65);
}
.offcanvas-btn-value {
  display: block;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.95rem;
  font-weight: 800;
  color: #fff;
}


   /* ── SAYFA BAŞLIĞI ── */
    .page-hero {
      background: var(--brand-dark);
      padding: 70px 0 80px;
      text-align: center;
      position: relative;
      overflow: hidden;
    }
    .page-hero::before {
      content: '';
      position: absolute; inset: 0;
      background-image: radial-gradient(circle, rgba(255,255,255,0.04) 1px, transparent 1px);
      background-size: 22px 22px;
    }
    .page-hero-label {
      font-size: 0.68rem; font-weight: 700; letter-spacing: 0.22em;
      text-transform: uppercase; color: rgba(255,255,255,0.5);
      margin-bottom: 12px; position: relative; z-index: 1;
    }
    .page-hero-title {
      font-size: clamp(2rem, 4vw, 3.2rem); font-weight: 800;
      color: #fff; line-height: 1.1; margin-bottom: 16px;
      position: relative; z-index: 1;
    }
    .page-hero-title span { color: #c8a090; }
    .page-hero-sub {
      font-size: 0.95rem; color: rgba(255,255,255,0.55);
      max-width: 480px; margin: 0 auto; line-height: 1.7;
      position: relative; z-index: 1;
    }

    /* ── ORTAK STİLLER ── */
    .section-label {
      font-size: 0.68rem; font-weight: 700; letter-spacing: 0.22em;
      text-transform: uppercase; color: var(--brand-accent); margin-bottom: 12px;
    }
    .section-title {
      font-size: clamp(1.7rem, 3vw, 2.4rem); font-weight: 800;
      color: var(--brand-dark); line-height: 1.15; margin-bottom: 20px;
    }
    .section-title em {
      font-family: 'Playfair Display', serif; font-style: italic; color: var(--brand-accent);
    }
    .section-text {
      font-size: 0.93rem; color: #6b4c3b; line-height: 1.85; margin-bottom: 16px;
    }
    .section-text:last-of-type { margin-bottom: 0; }

    /* Görsel kutusu */
    .about-img-wrap {
      position: relative;
      border-radius: 24px;
      overflow: hidden;
      aspect-ratio: 4/3;
      background: #ddd0c4;
    }
    .about-img-wrap img {
      width: 100%; height: 100%; object-fit: cover; display: block;
    }
    /* Üstüne küçük rozet */
    .about-img-badge {
      position: absolute;
      bottom: 20px; left: 20px;
      background: var(--brand-dark);
      border-radius: 14px;
      padding: 14px 20px;
      color: #fff;
    }
    .about-img-badge-num {
      font-size: 1.6rem; font-weight: 800; line-height: 1;
      letter-spacing: -0.02em;
    }
    .about-img-badge-text {
      font-size: 0.62rem; font-weight: 600; letter-spacing: 0.12em;
      text-transform: uppercase; color: rgba(255,255,255,0.6);
      margin-top: 4px;
    }

    /* ── 1. BÖLÜM: HİKAYEMİZ ── */
    .about-story { background: var(--bg-section); padding: 90px 0; }

    /* Yıl timeline */
    .story-timeline {
      display: flex; flex-direction: column; gap: 0;
      margin-top: 36px;
    }
    .timeline-item {
      display: flex; gap: 20px;
      padding-bottom: 28px;
      position: relative;
    }
    .timeline-item:not(:last-child)::before {
      content: '';
      position: absolute;
      left: 19px; top: 40px; bottom: 0;
      width: 2px; background: #e0d0c4;
    }
    .timeline-dot {
      width: 40px; height: 40px; border-radius: 50%;
      background: var(--brand-dark);
      display: flex; align-items: center; justify-content: center;
      color: #fff; font-size: 0.65rem; font-weight: 800;
      flex-shrink: 0; position: relative; z-index: 1;
      letter-spacing: -0.02em;
    }
    .timeline-content { padding-top: 8px; }
    .timeline-year {
      font-size: 0.65rem; font-weight: 700; letter-spacing: 0.15em;
      text-transform: uppercase; color: var(--brand-accent); margin-bottom: 4px;
    }
    .timeline-text {
      font-size: 0.88rem; color: #6b4c3b; line-height: 1.7;
    }

    /* ── 2. BÖLÜM: MİSYON & VİZYON ── */
    .about-mission { background: #ede6dc; padding: 90px 0; }

    .mv-card {
      background: #fff;
      border-radius: 20px;
      padding: 36px 32px;
      height: 100%;
      border-left: 4px solid var(--brand-dark);
      box-shadow: 0 4px 24px rgba(60,30,20,0.07);
    }
    .mv-card-icon {
      width: 54px; height: 54px; border-radius: 14px;
      background: #f0e8e0;
      display: flex; align-items: center; justify-content: center;
      font-size: 1.4rem; color: var(--brand-dark);
      margin-bottom: 22px;
    }
    .mv-card-title {
      font-size: 1.1rem; font-weight: 800; color: var(--brand-dark);
      margin-bottom: 14px;
    }
    .mv-card-text {
      font-size: 0.88rem; color: #6b4c3b; line-height: 1.8; margin: 0;
    }

    /* Sağdaki görsel — misyon/vizyon */
    .mission-img-wrap {
      border-radius: 24px; overflow: hidden;
      aspect-ratio: 3/4; background: #ddd0c4;
      height: 100%;
    }
    .mission-img-wrap img {
      width: 100%; height: 100%; object-fit: cover; display: block;
    }

    /* ── 3. BÖLÜM: NEDEN BİZ ── */
    .about-why { background: var(--bg-section); padding: 90px 0; }

    .why-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 16px;
      margin-top: 8px;
    }
    .why-item {
      background: #fff;
      border-radius: 16px;
      padding: 24px 22px;
      border: 1px solid #5c2d1d;
      transition: border-color 0.25s, box-shadow 0.25s, transform 0.25s;
    }
    .why-item:hover {
      border-color: #d4bfb3;
      box-shadow: 0 8px 28px rgba(60,30,20,0.09);
      transform: translateY(-3px);
    }
    .why-item-icon {
      font-size: 1.5rem; color: var(--brand-accent);
      margin-bottom: 12px; display: block;
    }
    .why-item-title {
      font-size: 0.9rem; font-weight: 700; color: var(--brand-dark);
      margin-bottom: 8px;
    }
    .why-item-text {
      font-size: 0.8rem; color: #7a5a4a; line-height: 1.7; margin: 0;
    }

    /* Sağdaki görsel — neden biz */
    .why-img-wrap {
      border-radius: 24px; overflow: hidden;
      background: #ddd0c4;
    }
    .why-img-wrap img {
      width: 100%;  object-fit: cover; display: block;
    }
    /* Üstüne stat rozeti */
    .why-img-stat {
      position: absolute;
      top: 24px; right: -16px;
      background: #fff;
      border-radius: 16px;
      padding: 18px 22px;
      box-shadow: 0 8px 28px rgba(60,30,20,0.14);
      text-align: center;
    }
    .why-img-stat-num {
      font-size: 1.8rem; font-weight: 800; color: var(--brand-dark);
      line-height: 1; letter-spacing: -0.03em;
    }
    .why-img-stat-text {
      font-size: 0.6rem; font-weight: 700; letter-spacing: 0.12em;
      text-transform: uppercase; color: #a07060; margin-top: 4px;
    }
    .why-img-rel { position: relative; }

    @media (max-width: 991px) {
      .why-img-stat { right: 0; }
      .mission-img-wrap { aspect-ratio: 4/3; }
    }
    @media (max-width: 576px) {
      .why-grid { grid-template-columns: 1fr; }
      .about-story, .about-mission, .about-why { padding: 60px 0; }
      .page-hero { padding: 50px 0 60px; }
    }



        /* ── SAYFA BAŞLIĞI ── */
    .page-hero {
      background: var(--brand-dark);
      padding: 70px 0 80px;
      text-align: center;
      position: relative;
      overflow: hidden;
    }
    .page-hero::before {
      content: '';
      position: absolute; inset: 0;
      background-image: radial-gradient(circle, rgba(255,255,255,0.04) 1px, transparent 1px);
      background-size: 22px 22px;
    }
    .page-hero-label {
      font-size: 0.68rem; font-weight: 700; letter-spacing: 0.22em;
      text-transform: uppercase; color: rgba(255,255,255,0.5);
      margin-bottom: 12px; position: relative; z-index: 1;
    }
    .page-hero-title {
      font-size: clamp(2rem, 4vw, 3.2rem); font-weight: 800;
      color: #fff; line-height: 1.1; margin-bottom: 16px;
      position: relative; z-index: 1;
    }
    .page-hero-title span { color: #c8a090; }
    .page-hero-sub {
      font-size: 0.95rem; color: rgba(255,255,255,0.55);
      max-width: 480px; margin: 0 auto; line-height: 1.7;
      position: relative; z-index: 1;
    }

    /* ── HİZMETLER GRID ── */
    .services-page { padding: 80px 0 100px; }

    .service-card {
      background: #fff;
      border-radius: 20px;
      overflow: hidden;
      height: 100%;
      border:1px solid #5c2d1d;
      transition: border-color 0.25s, box-shadow 0.25s, transform 0.25s;
      text-decoration: none;
      display: flex;
      flex-direction: column;
    }
    .service-card:hover {
      border-color: #d4bfb3;
      box-shadow: 0 12px 40px rgba(60,30,20,0.12);
      transform: translateY(-4px);
    }

    /* Görsel */
    .service-card-img {
      position: relative;
      width: 100%;
      aspect-ratio: 16/9;
      overflow: hidden;
      background: #ddd0c4;
      border-radius: 20px;
    }
    .service-card-img img {
      width: 100%; height: 100%;
      object-fit: cover; display: block;
      transition: transform 0.45s ease;
      border-radius: 20px;
    }
    .service-card:hover .service-card-img img { transform: scale(1.06); }

    /* Kategori badge */
    .service-card-cat {
      position: absolute; top: 14px; left: 14px;
      background: var(--brand-dark);
      color: #fff; font-size: 0.6rem; font-weight: 700;
      letter-spacing: 0.14em; text-transform: uppercase;
      padding: 5px 12px; border-radius: 50px;
    }

    /* Body */
    .service-card-body {
      padding: 28px 28px 32px;
      display: flex; flex-direction: column; flex: 1;
    }
    .service-card-icon {
      width: 52px; height: 52px; border-radius: 14px;
      background: #f0e8e0;
      display: flex; align-items: center; justify-content: center;
      font-size: 1.4rem; color: var(--brand-dark);
      margin-bottom: 18px;
      transition: background 0.25s;
    }
    .service-card:hover .service-card-icon { background: #e8d8cc; }

    .service-card-title {
      font-size: 1.15rem; font-weight: 800;
      color: var(--brand-dark); margin-bottom: 10px;
    }
    .service-card-text {
      font-size: 0.85rem; color: #7a5a4a;
      line-height: 1.75; margin-bottom: 24px; flex: 1;
    }
    .service-card-link {
      display: inline-flex; align-items: center; gap: 8px;
      font-size: 0.75rem; font-weight: 700;
      letter-spacing: 0.1em; text-transform: uppercase;
      color: var(--brand-dark);
      transition: gap 0.2s, color 0.2s;
    }
    .service-card:hover .service-card-link { color: var(--brand-accent); gap: 12px; }

    /* CTA alt banner */
    .services-cta {
      background: var(--brand-dark);
      border-radius: 24px;
      padding: 52px 40px;
      text-align: center;
      position: relative;
      overflow: hidden;
      margin-top: 60px;
    }
    .services-cta::before {
      content: '';
      position: absolute; inset: 0;
      background-image: radial-gradient(circle, rgba(255,255,255,0.04) 1px, transparent 1px);
      background-size: 20px 20px;
    }
    .services-cta-title {
      font-size: clamp(1.4rem, 3vw, 2rem);
      font-weight: 800; color: #fff;
      margin-bottom: 10px; position: relative; z-index: 1;
    }
    .services-cta-sub {
      font-size: 0.9rem; color: rgba(255,255,255,0.6);
      margin-bottom: 28px; position: relative; z-index: 1;
    }
    .services-cta-btns {
      display: flex; gap: 14px; justify-content: center;
      flex-wrap: wrap; position: relative; z-index: 1;
    }
    .cta-btn-phone {
      background: #fff; color: var(--brand-dark) !important;
      font-size: 0.88rem; font-weight: 700;
      border-radius: 10px; padding: 0.85rem 1.8rem;
      display: inline-flex; align-items: center; gap: 8px;
      text-decoration: none; transition: background 0.2s, transform 0.15s;
    }
    .cta-btn-phone:hover { background: #f0e8e0; transform: translateY(-2px); color: var(--brand-dark) !important; }
    .cta-btn-wp {
      background: #25d366; color: #fff !important;
      font-size: 0.88rem; font-weight: 700;
      border-radius: 10px; padding: 0.85rem 1.8rem;
      display: inline-flex; align-items: center; gap: 8px;
      text-decoration: none; transition: background 0.2s, transform 0.15s;
    }
    .cta-btn-wp:hover { background: #1ebe5d; transform: translateY(-2px); color: #fff !important; }

    @media (max-width: 576px) {
      .services-page { padding: 52px 0 70px; }
      .page-hero { padding: 50px 0 60px; }
      .services-cta { padding: 40px 20px; }
      .cta-btn-phone, .cta-btn-wp { width: 100%; justify-content: center; }
    }



        /* ── BREADCRUMB ── */
    .breadcrumb-bar {
      background: #fff;
      border-bottom: 1px solid #ede0d8;
      padding: 14px 0;
    }
    .breadcrumb {
      margin: 0;
      font-size: 0.75rem;
      font-weight: 500;
    }
    .breadcrumb-item a { color: var(--brand-accent); text-decoration: none; }
    .breadcrumb-item a:hover { text-decoration: underline; }
    .breadcrumb-item.active { color: #9a7060; }
    .breadcrumb-item + .breadcrumb-item::before { color: #c4b0a4; }

    /* ── HERO ── */
    .detail-hero {
      position: relative;
      height: 380px;
      overflow: hidden;
      background: #2a1810;
    }
    .detail-hero img {
      width: 100%; height: 100%;
      object-fit: cover; display: block;
      opacity: 0.55;
    }
    .detail-hero-content {
      position: absolute; inset: 0;
      display: flex; flex-direction: column;
      justify-content: flex-end;
      padding: 0 0 48px;
    }
    .detail-hero-cat {
      font-size: 0.65rem; font-weight: 700;
      letter-spacing: 0.2em; text-transform: uppercase;
      color: rgba(255,255,255,0.65); margin-bottom: 10px;
    }
    .detail-hero-title {
      font-size: clamp(2rem, 5vw, 3.4rem); font-weight: 900;
      color: #fff; line-height: 1.05; margin: 0;
    }

    /* ── ANA İÇERİK ── */
    .detail-body { padding: 70px 0 90px; }

    /* Sol: İçerik */
    .detail-content h2 {
      font-size: 1.4rem; font-weight: 800;
      color: var(--brand-dark); margin: 36px 0 14px;
    }
    .detail-content h2:first-child { margin-top: 0; }
    .detail-content p {
      font-size: 0.93rem; color: #6b4c3b;
      line-height: 1.85; margin-bottom: 16px;
    }

    /* Özellik listesi */
    .feature-list {
      list-style: none; padding: 0; margin: 0 0 28px;
      display: flex; flex-direction: column; gap: 12px;
    }
    .feature-list li {
      display: flex; align-items: flex-start; gap: 12px;
      font-size: 0.88rem; color: #5a3c2c; line-height: 1.6;
    }
    .feature-list li i {
      color: #22c55e; font-size: 1rem;
      flex-shrink: 0; margin-top: 2px;
    }

    /* Süreç adımları */
    .process-steps {
      display: flex; flex-direction: column; gap: 0;
      margin: 8px 0 28px;
    }
    .process-step {
      display: flex; gap: 18px;
      padding-bottom: 24px; position: relative;
    }
    .process-step:not(:last-child)::before {
      content: '';
      position: absolute;
      left: 19px; top: 42px; bottom: 0;
      width: 2px; background: #e0d0c4;
    }
    .process-num {
      width: 40px; height: 40px; border-radius: 50%;
      background: var(--brand-dark);
      color: #fff; font-size: 0.8rem; font-weight: 800;
      display: flex; align-items: center; justify-content: center;
      flex-shrink: 0; position: relative; z-index: 1;
    }
    .process-content { padding-top: 8px; }
    .process-title {
      font-size: 0.9rem; font-weight: 700;
      color: var(--brand-dark); margin-bottom: 4px;
    }
    .process-text {
      font-size: 0.82rem; color: #7a5a4a; line-height: 1.65;
    }

    /* ── SAĞ: Sidebar ── */
    .detail-sidebar { position: sticky; top: 90px; }

    /* İletişim kartı */
    .sidebar-contact {
      background: var(--brand-dark);
      border-radius: 20px;
      padding: 30px 26px;
      margin-bottom: 20px;
      position: relative; overflow: hidden;
    }
    .sidebar-contact::before {
      content: '';
      position: absolute; inset: 0;
      background-image: radial-gradient(circle, rgba(255,255,255,0.05) 1px, transparent 1px);
      background-size: 18px 18px;
    }
    .sidebar-contact-label {
      font-size: 0.62rem; font-weight: 700; letter-spacing: 0.18em;
      text-transform: uppercase; color: rgba(255,255,255,0.5);
      margin-bottom: 8px; position: relative; z-index: 1;
    }
    .sidebar-contact-title {
      font-size: 1.1rem; font-weight: 800; color: #fff;
      margin-bottom: 6px; position: relative; z-index: 1;
    }
    .sidebar-contact-sub {
      font-size: 0.8rem; color: rgba(255,255,255,0.55);
      margin-bottom: 24px; line-height: 1.6;
      position: relative; z-index: 1;
    }
    .sidebar-btn {
      display: flex; align-items: center; gap: 12px;
      border-radius: 12px; padding: 14px 18px;
      text-decoration: none; margin-bottom: 10px;
      transition: transform 0.15s;
      position: relative; z-index: 1;
    }
    .sidebar-btn:last-child { margin-bottom: 0; }
    .sidebar-btn:active { transform: scale(0.98); }
    .sidebar-btn i { font-size: 1.1rem; color: #fff; flex-shrink: 0; }
    .sidebar-btn-text { display: flex; flex-direction: column; gap: 2px; }
    .sidebar-btn-label {
      font-size: 0.6rem; font-weight: 600; letter-spacing: 0.1em;
      text-transform: uppercase; color: rgba(255,255,255,0.65);
    }
    .sidebar-btn-value {
      font-size: 0.9rem; font-weight: 800; color: #fff;
    }
    .sidebar-btn-phone { background: rgba(255,255,255,0.12); }
    .sidebar-btn-phone:hover { background: rgba(255,255,255,0.2); }
    .sidebar-btn-wp { background: #25d366; }
    .sidebar-btn-wp:hover { background: #1ebe5d; }

    /* Diğer hizmetler kartı */
    .sidebar-services {
      background: #fff;
      border-radius: 20px;
      padding: 26px 24px;
    }
    .sidebar-services-title {
      font-size: 0.75rem; font-weight: 700; letter-spacing: 0.14em;
      text-transform: uppercase; color: var(--brand-dark);
      margin-bottom: 18px;
    }
    .sidebar-service-link {
      display: flex; align-items: center; gap: 12px;
      padding: 12px 14px; border-radius: 10px;
      text-decoration: none; color: var(--brand-dark);
      font-size: 0.85rem; font-weight: 600;
      transition: background 0.2s, color 0.2s;
      margin-bottom: 4px;
    }
    .sidebar-service-link:last-child { margin-bottom: 0; }
    .sidebar-service-link i { font-size: 1rem; color: var(--brand-accent); width: 20px; text-align: center; }
    .sidebar-service-link:hover { background: #f0e8e0; color: var(--brand-accent); }
    .sidebar-service-link.active { background: #f0e8e0; color: var(--brand-accent); font-weight: 700; }
    .sidebar-service-link .si-arrow { margin-left: auto; font-size: 0.75rem; color: #c4b0a4; }

    @media (max-width: 991px) {
      .detail-hero { height: 280px; }
      .detail-sidebar { position: static; margin-top: 40px; }
      .detail-body { padding: 50px 0 70px; }
    }
    @media (max-width: 576px) {
      .detail-hero { height: 220px; }
      .detail-hero-content { padding-bottom: 28px; }
    }


        /* ── SAYFA BAŞLIĞI ── */
    .page-hero {
      background: var(--brand-dark);
      padding: 70px 0 80px;
      text-align: center;
      position: relative;
      overflow: hidden;
    }
    .page-hero::before {
      content: '';
      position: absolute; inset: 0;
      background-image: radial-gradient(circle, rgba(255,255,255,0.04) 1px, transparent 1px);
      background-size: 22px 22px;
    }
    .page-hero-label {
      font-size: 0.68rem; font-weight: 700; letter-spacing: 0.22em;
      text-transform: uppercase; color: rgba(255,255,255,0.5);
      margin-bottom: 12px; position: relative; z-index: 1;
    }
    .page-hero-title {
      font-size: clamp(2rem, 4vw, 3.2rem); font-weight: 800;
      color: #fff; line-height: 1.1; margin-bottom: 16px;
      position: relative; z-index: 1;
    }
    .page-hero-title span { color: #c8a090; }
    .page-hero-sub {
      font-size: 0.95rem; color: rgba(255,255,255,0.55);
      max-width: 500px; margin: 0 auto; line-height: 1.7;
      position: relative; z-index: 1;
    }

    /* ── STATS BAR ── */
    .stats-bar {
      background: #fff;
      border-bottom: 1px solid #ede0d8;
      padding: 24px 0;
    }
    .stats-bar-inner {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 0;
      flex-wrap: wrap;
    }
    .stat-item {
      display: flex;
      align-items: center;
      gap: 12px;
      padding: 8px 36px;
      border-right: 1px solid #e8d8d0;
    }
    .stat-item:last-child { border-right: none; }
    .stat-item-icon {
      width: 40px; height: 40px;
      background: #f0e8e0; border-radius: 10px;
      display: flex; align-items: center; justify-content: center;
      font-size: 1.1rem; color: var(--brand-accent);
      flex-shrink: 0;
    }
    .stat-item-num {
      font-size: 1.3rem; font-weight: 800;
      color: var(--brand-dark); line-height: 1;
      letter-spacing: -0.02em;
    }
    .stat-item-text {
      font-size: 0.62rem; font-weight: 600; letter-spacing: 0.1em;
      text-transform: uppercase; color: #9a7060; margin-top: 3px;
    }

    /* ── BÖLGELER ── */
    .regions-section { padding: 70px 0 90px; }

    /* Sol: Accordion bölge listesi */
    .region-accordion { display: flex; flex-direction: column; gap: 12px; }

    .region-item {
      background: #fff;
      border-radius: 18px;
      overflow: hidden;
      border: 1.5px solid transparent;
      transition: border-color 0.25s, box-shadow 0.25s;
    }
    .region-item.is-open {
      border-color: #d4bfb3;
      box-shadow: 0 8px 32px rgba(60,30,20,0.10);
    }

    /* Başlık satırı */
    .region-header {
      display: flex;
      align-items: center;
      gap: 16px;
      padding: 20px 24px;
      cursor: pointer;
      user-select: none;
      transition: background 0.2s;
    }
    .region-header:hover { background: #faf6f2; }
    .region-item.is-open .region-header { background: #faf6f2; }

    .region-icon {
      width: 48px; height: 48px;
      border-radius: 14px;
      background: #f0e8e0;
      display: flex; align-items: center; justify-content: center;
      font-size: 1.3rem; color: var(--brand-dark);
      flex-shrink: 0;
      transition: background 0.25s;
    }
    .region-item.is-open .region-icon {
      background: var(--brand-dark);
      color: #fff;
    }

    .region-header-text { flex: 1; }
    .region-name {
      font-size: 1rem; font-weight: 800;
      color: var(--brand-dark); margin-bottom: 3px;
    }
    .region-tagline {
      font-size: 0.75rem; font-weight: 500;
      color: #9a7060;
    }

    .region-badge {
      font-size: 0.6rem; font-weight: 700;
      letter-spacing: 0.12em; text-transform: uppercase;
      padding: 4px 10px; border-radius: 50px;
      background: #f0e8e0; color: var(--brand-accent);
      white-space: nowrap;
    }
    .region-item.is-open .region-badge {
      background: var(--brand-dark); color: #fff;
    }

    .region-chevron {
      font-size: 0.9rem; color: #c4b0a4;
      transition: transform 0.3s ease;
      flex-shrink: 0;
    }
    .region-item.is-open .region-chevron { transform: rotate(180deg); color: var(--brand-accent); }

    /* İçerik (accordion body) */
    .region-body {
      max-height: 0;
      overflow: hidden;
      transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    }
    .region-item.is-open .region-body { max-height: 600px; }

    .region-body-inner {
      padding: 0 24px 26px;
      border-top: 1px solid #f0e8e0;
      padding-top: 22px;
    }

    .region-desc {
      font-size: 0.88rem; color: #6b4c3b;
      line-height: 1.8; margin-bottom: 20px;
    }

    /* Hizmet etiketleri */
    .region-services {
      display: flex; flex-wrap: wrap; gap: 8px;
      margin-bottom: 20px;
    }
    .region-service-tag {
      display: inline-flex; align-items: center; gap: 6px;
      background: #f0e8e0; border-radius: 8px;
      padding: 6px 12px;
      font-size: 0.72rem; font-weight: 600;
      color: var(--brand-dark);
    }
    .region-service-tag i { font-size: 0.8rem; color: var(--brand-accent); }

    /* CTA satırı */
    .region-cta {
      display: flex; align-items: center;
      gap: 10px; flex-wrap: wrap;
    }
    .region-cta-btn {
      display: inline-flex; align-items: center; gap: 8px;
      border-radius: 10px; padding: 10px 18px;
      font-size: 0.78rem; font-weight: 700;
      text-decoration: none;
      transition: transform 0.15s, background 0.2s;
    }
    .region-cta-btn:active { transform: scale(0.97); }
    .region-cta-phone {
      background: var(--brand-dark); color: #fff !important;
    }
    .region-cta-phone:hover { background: var(--brand-accent); color: #fff !important; }
    .region-cta-wp {
      background: #25d366; color: #fff !important;
    }
    .region-cta-wp:hover { background: #1ebe5d; color: #fff !important; }

    /* ── SAĞ: Bilgi paneli ── */
    .info-panel { position: sticky; top: 90px; }

    .info-card {
      background: #fff;
      border-radius: 20px;
      padding: 28px 26px;
      margin-bottom: 16px;
      box-shadow: 0 4px 20px rgba(60,30,20,0.06);
    }
    .info-card-title {
      font-size: 0.72rem; font-weight: 700; letter-spacing: 0.16em;
      text-transform: uppercase; color: var(--brand-accent);
      margin-bottom: 18px;
    }

    /* Çalışma saatleri */
    .hours-list { display: flex; flex-direction: column; gap: 10px; }
    .hours-item {
      display: flex; justify-content: space-between; align-items: center;
      font-size: 0.82rem;
    }
    .hours-day { font-weight: 600; color: var(--brand-dark); }
    .hours-time {
      font-weight: 700; color: var(--brand-accent);
      background: #f0e8e0; border-radius: 6px;
      padding: 3px 10px; font-size: 0.75rem;
    }

    /* Neden biz mini liste */
    .why-mini-list { display: flex; flex-direction: column; gap: 12px; }
    .why-mini-item {
      display: flex; align-items: flex-start; gap: 10px;
      font-size: 0.82rem; color: #5a3c2c; line-height: 1.6;
    }
    .why-mini-item i { color: #22c55e; font-size: 1rem; flex-shrink: 0; margin-top: 1px; }

    /* İletişim kartı */
    .contact-card {
      background: var(--brand-dark);
      border-radius: 20px;
      padding: 28px 26px;
      position: relative; overflow: hidden;
    }
    .contact-card::before {
      content: '';
      position: absolute; inset: 0;
      background-image: radial-gradient(circle, rgba(255,255,255,0.05) 1px, transparent 1px);
      background-size: 18px 18px;
    }
    .contact-card-label {
      font-size: 0.62rem; font-weight: 700; letter-spacing: 0.18em;
      text-transform: uppercase; color: rgba(255,255,255,0.5);
      margin-bottom: 6px; position: relative; z-index: 1;
    }
    .contact-card-title {
      font-size: 1rem; font-weight: 800; color: #fff;
      margin-bottom: 20px; position: relative; z-index: 1;
      line-height: 1.3;
    }
    .contact-card-btn {
      display: flex; align-items: center; gap: 10px;
      border-radius: 10px; padding: 12px 16px;
      text-decoration: none; margin-bottom: 8px;
      position: relative; z-index: 1;
      transition: opacity 0.2s;
    }
    .contact-card-btn:last-child { margin-bottom: 0; }
    .contact-card-btn:hover { opacity: 0.9; }
    .contact-card-btn i { font-size: 1rem; color: #fff; }
    .contact-card-btn-text { display: flex; flex-direction: column; }
    .contact-card-btn-label {
      font-size: 0.58rem; font-weight: 600; letter-spacing: 0.1em;
      text-transform: uppercase; color: rgba(255,255,255,0.6);
    }
    .contact-card-btn-value {
      font-size: 0.88rem; font-weight: 800; color: #fff;
    }
    .contact-card-btn-phone { background: rgba(255,255,255,0.12); }
    .contact-card-btn-wp { background: #25d366; }

    /* ── ALT SEO BANT ── */
    .regions-seo {
      background: #ede6dc;
      border-top: 1px solid #ddd0c4;
      padding: 60px 0 70px;
    }
    .regions-seo-title {
      font-size: 1.1rem; font-weight: 800;
      color: var(--brand-dark); margin-bottom: 16px;
    }
    .regions-seo p {
      font-size: 0.88rem; color: #6b4c3b;
      line-height: 1.85; margin-bottom: 12px;
    }

    @media (max-width: 991px) {
      .info-panel { position: static; margin-top: 40px; }
      .stat-item { padding: 8px 18px; }
    }
    @media (max-width: 576px) {
      .page-hero { padding: 50px 0 60px; }
      .regions-section { padding: 50px 0 70px; }
      .stat-item { border-right: none; border-bottom: 1px solid #e8d8d0; width: 50%; }
      .stat-item:nth-child(2n) { border-right: none; }
      .stat-item:last-child { border-bottom: none; }
      .stats-bar-inner { justify-content: flex-start; }
    }


        /* ── SAYFA BAŞLIĞI ── */
    .page-hero {
      background: var(--brand-dark);
      padding: 70px 0 80px;
      text-align: center;
      position: relative;
      overflow: hidden;
    }
    .page-hero::before {
      content: '';
      position: absolute; inset: 0;
      background-image: radial-gradient(circle, rgba(255,255,255,0.04) 1px, transparent 1px);
      background-size: 22px 22px;
    }
    .page-hero-label {
      font-size: 0.68rem; font-weight: 700; letter-spacing: 0.22em;
      text-transform: uppercase; color: rgba(255,255,255,0.5);
      margin-bottom: 12px; position: relative; z-index: 1;
    }
    .page-hero-title {
      font-size: clamp(2rem, 4vw, 3.2rem); font-weight: 800;
      color: #fff; line-height: 1.1; margin-bottom: 16px;
      position: relative; z-index: 1;
    }
    .page-hero-title span { color: #c8a090; }
    .page-hero-sub {
      font-size: 0.95rem; color: rgba(255,255,255,0.55);
      max-width: 480px; margin: 0 auto; line-height: 1.7;
      position: relative; z-index: 1;
    }

    /* ── GALERİ ── */
    .gallery-page { padding: 52px 0 90px; }

    .gallery-grid {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 14px;
    }

    .gallery-item {
      border-radius: 16px;
      overflow: hidden;
      background: #ddd0c4;
    }
    .gallery-item img {
      width: 100%;
      aspect-ratio: 4/3;
      object-fit: cover;
      display: block;
      transition: transform 0.4s ease;
          cursor: auto;
    }
    .gallery-item:hover img { transform: scale(1.04); }

    @media (max-width: 576px) {
      .gallery-grid { grid-template-columns: 1fr; }
      .page-hero { padding: 50px 0 60px; }
    }



        /* ── SAYFA BAŞLIĞI ── */
    .page-hero {
      background: var(--brand-dark);
      padding: 70px 0 80px;
      text-align: center;
      position: relative; overflow: hidden;
    }
    .page-hero::before {
      content: '';
      position: absolute; inset: 0;
      background-image: radial-gradient(circle, rgba(255,255,255,0.04) 1px, transparent 1px);
      background-size: 22px 22px;
    }
    .page-hero-label {
      font-size: 0.68rem; font-weight: 700; letter-spacing: 0.22em;
      text-transform: uppercase; color: rgba(255,255,255,0.5);
      margin-bottom: 12px; position: relative; z-index: 1;
    }
    .page-hero-title {
      font-size: clamp(2rem, 4vw, 3.2rem); font-weight: 800;
      color: #fff; line-height: 1.1; margin-bottom: 16px;
      position: relative; z-index: 1;
    }
    .page-hero-title span { color: #c8a090; }
    .page-hero-sub {
      font-size: 0.95rem; color: rgba(255,255,255,0.55);
      max-width: 480px; margin: 0 auto; line-height: 1.7;
      position: relative; z-index: 1;
    }

    /* ── BLOG ── */
    .blog-page { padding: 60px 0 90px; }

    /* Öne çıkan yazı */
    .blog-featured {
      background: #fff;
      border-radius: 20px;
      overflow: hidden;
      display: flex;
      margin-bottom: 16px;
      border: 1px solid transparent;
      transition: border-color 0.25s, box-shadow 0.25s, transform 0.25s;
      text-decoration: none;
    }
    .blog-featured:hover {
      border-color: #d4bfb3;
      box-shadow: 0 12px 40px rgba(60,30,20,0.10);
      transform: translateY(-3px);
    }
    .blog-featured-img {
      width: 46%; flex-shrink: 0;
      overflow: hidden; background: #ddd0c4;
    }
    .blog-featured-img img {
      width: 100%; height: 100%;
      object-fit: cover; object-position: top; display: block;
      transition: transform 0.45s ease;
    }
    .blog-featured:hover .blog-featured-img img { transform: scale(1.05); }
    .blog-featured-body {
      padding: 40px 36px;
      display: flex; flex-direction: column; justify-content: center;
    }
    .blog-featured-tag {
      font-size: 0.62rem; font-weight: 700; letter-spacing: 0.16em;
      text-transform: uppercase; color: var(--brand-accent); margin-bottom: 14px;
    }
    .blog-featured-title {
      font-family: 'Playfair Display', serif;
      font-size: clamp(1.3rem, 2.5vw, 1.9rem);
      font-weight: 700; font-style: italic;
      color: var(--brand-dark); line-height: 1.25; margin-bottom: 14px;
    }
    .blog-featured-excerpt {
      font-size: 0.88rem; color: #7a5a4a; line-height: 1.75; margin-bottom: 24px;
    }
    .blog-meta {
      display: flex; align-items: center; gap: 16px;
      font-size: 0.72rem; font-weight: 600; color: #b09080;
    }
    .blog-meta i { font-size: 0.78rem; }

    /* Normal kartlar */
    .blog-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 16px;
    }
    .blog-card {
      background: #fff;
      border-radius: 20px;
      overflow: hidden;
      display: flex; flex-direction: column;
      border: 1px solid #5c2d1d;
      transition: border-color 0.25s, box-shadow 0.25s, transform 0.25s;
      text-decoration: none;
    }
    .blog-card:hover {
      border-color: #d4bfb3;
      box-shadow: 0 12px 40px rgba(60,30,20,0.10);
      transform: translateY(-4px);
    }
    .blog-card-img {
      width: 100%; aspect-ratio: 16/9;
      overflow: hidden; background: #ddd0c4;
    }
    .blog-card-img img {
      width: 100%; height: 100%;
      object-fit: cover; object-position: top; display: block;
      transition: transform 0.45s ease;
    }
    .blog-card:hover .blog-card-img img { transform: scale(1.05); }
    .blog-card-body {
      padding: 22px 22px 26px;
      display: flex; flex-direction: column; flex: 1;
    }
    .blog-card-tag {
      font-size: 0.6rem; font-weight: 700; letter-spacing: 0.14em;
      text-transform: uppercase; color: var(--brand-accent); margin-bottom: 8px;
    }
    .blog-card-title {
      font-size: 0.95rem; font-weight: 700;
      color: var(--brand-dark); line-height: 1.4;
      margin-bottom: 10px; flex: 1;
    }
    .blog-card-excerpt {
      font-size: 0.8rem; color: #7a5a4a; line-height: 1.7; margin-bottom: 16px;
    }
    .blog-card-meta {
      display: flex; align-items: center; gap: 12px;
      font-size: 0.68rem; font-weight: 600; color: #b09080;
      padding-top: 14px; border-top: 1px solid #f0e8e0;
    }

    @media (max-width: 991px) {
      .blog-grid { grid-template-columns: repeat(2, 1fr); }
      .blog-featured { flex-direction: column; }
      .blog-featured-img { width: 100%; aspect-ratio: 16/9; }
      .blog-featured-body { padding: 26px 24px; }
    }
    @media (max-width: 576px) {
      .blog-grid { grid-template-columns: 1fr; }
      .page-hero { padding: 50px 0 60px; }
      .blog-page { padding: 44px 0 70px; }
    }

        /* ── BREADCRUMB ── */
    .breadcrumb-bar {
      background: #fff;
      border-bottom: 1px solid #ede0d8;
      padding: 14px 0;
    }
    .breadcrumb { margin: 0; font-size: 0.75rem; font-weight: 500; }
    .breadcrumb-item a { color: var(--brand-accent); text-decoration: none; }
    .breadcrumb-item a:hover { text-decoration: underline; }
    .breadcrumb-item.active { color: #9a7060; }
    .breadcrumb-item + .breadcrumb-item::before { color: #c4b0a4; }

    /* ── HERO GÖRSEL ── */
    .post-hero {
      width: 100%;
      aspect-ratio: 21/8;
      overflow: hidden;
      background: #ddd0c4;
    }
    .post-hero img {
      width: 100%; height: 100%;
      object-fit: cover; object-position: center; display: block;
    }

    /* ── İÇERİK ── */
    .post-body { padding: 60px 0 90px; }

    /* Sol: makale */
    .post-header { margin-bottom: 36px; }
    .post-tag {
      font-size: 0.65rem; font-weight: 700; letter-spacing: 0.16em;
      text-transform: uppercase; color: var(--brand-accent); margin-bottom: 14px;
    }
    .post-title {
      font-family: 'Playfair Display', serif;
      font-size: clamp(1.7rem, 3.5vw, 2.6rem);
      font-weight: 700;
      color: var(--brand-dark); line-height: 1.2; margin-bottom: 18px;
    }
    .post-meta {
      display: flex; align-items: center; gap: 20px;
      flex-wrap: wrap;
      font-size: 0.75rem; font-weight: 600; color: #b09080;
      padding-bottom: 28px;
      border-bottom: 1px solid #e8d8d0;
    }
    .post-meta i { font-size: 0.82rem; }

    /* Makale içeriği */
    .post-content p {
      font-size: 0.95rem; color: #5a3c2c;
      line-height: 1.9; margin-bottom: 22px;
    }
    .post-content h2 {
      font-size: 1.25rem; font-weight: 800;
      color: var(--brand-dark); margin: 40px 0 16px;
    }
    .post-content h3 {
      font-size: 1.05rem; font-weight: 700;
      color: var(--brand-dark); margin: 28px 0 12px;
    }
    .post-content ul {
      padding-left: 0; list-style: none;
      display: flex; flex-direction: column; gap: 10px;
      margin-bottom: 22px;
    }
    .post-content ul li {
      display: flex; align-items: flex-start; gap: 10px;
      font-size: 0.92rem; color: #5a3c2c; line-height: 1.7;
    }
    .post-content ul li::before {
      content: '';
      width: 7px; height: 7px; border-radius: 50%;
      background: var(--brand-accent);
      flex-shrink: 0; margin-top: 8px;
    }

    /* Vurgu kutusu */
    .post-highlight {
      background: #fff;
      border-left: 4px solid var(--brand-dark);
      border-radius: 0 12px 12px 0;
      padding: 20px 24px;
      margin: 28px 0;
      font-size: 0.95rem; font-style: italic;
      color: #5a3c2c; line-height: 1.75;
    }

    /* ── SAĞ: Sidebar ── */
    .post-sidebar { position: sticky; top: 90px; }

    /* İletişim kartı */
    .sidebar-contact {
      background: var(--brand-dark);
      border-radius: 20px; padding: 28px 24px;
      margin-bottom: 16px;
      position: relative; overflow: hidden;
    }
    .sidebar-contact::before {
      content: '';
      position: absolute; inset: 0;
      background-image: radial-gradient(circle, rgba(255,255,255,0.05) 1px, transparent 1px);
      background-size: 18px 18px;
    }
    .sidebar-contact-label {
      font-size: 0.62rem; font-weight: 700; letter-spacing: 0.18em;
      text-transform: uppercase; color: rgba(255,255,255,0.5);
      margin-bottom: 8px; position: relative; z-index: 1;
    }
    .sidebar-contact-title {
      font-size: 1rem; font-weight: 800; color: #fff;
      margin-bottom: 20px; position: relative; z-index: 1; line-height: 1.35;
    }
    .sidebar-btn {
      display: flex; align-items: center; gap: 12px;
      border-radius: 12px; padding: 13px 16px;
      text-decoration: none; margin-bottom: 8px;
      position: relative; z-index: 1;
      transition: opacity 0.2s;
    }
    .sidebar-btn:last-child { margin-bottom: 0; }
    .sidebar-btn:hover { opacity: 0.9; }
    .sidebar-btn i { font-size: 1rem; color: #fff; flex-shrink: 0; }
    .sidebar-btn-text { display: flex; flex-direction: column; gap: 2px; }
    .sidebar-btn-label {
      font-size: 0.58rem; font-weight: 600; letter-spacing: 0.1em;
      text-transform: uppercase; color: rgba(255,255,255,0.6);
    }
    .sidebar-btn-value { font-size: 0.9rem; font-weight: 800; color: #fff; }
    .sidebar-btn-phone { background: rgba(255,255,255,0.12); }
    .sidebar-btn-wp { background: #25d366; }

    /* Son yazılar */
    .sidebar-posts { background: #fff; border-radius: 20px; padding: 24px 22px; }
    .sidebar-posts-title {
      font-size: 0.72rem; font-weight: 700; letter-spacing: 0.14em;
      text-transform: uppercase; color: var(--brand-dark); margin-bottom: 18px;
    }
    .sidebar-post-item {
      display: flex; gap: 12px; align-items: center;
      padding: 10px 0; border-bottom: 1px solid #f0e8e0;
      text-decoration: none;
      transition: opacity 0.2s;
    }
    .sidebar-post-item:last-child { border-bottom: none; padding-bottom: 0; }
    .sidebar-post-item:hover { opacity: 0.75; }
    .sidebar-post-img {
      width: 56px; height: 48px; border-radius: 8px;
      overflow: hidden; flex-shrink: 0; background: #ddd0c4;
    }
    .sidebar-post-img img { width: 100%; height: 100%; object-fit: cover; }
    .sidebar-post-title {
      font-size: 0.78rem; font-weight: 600;
      color: var(--brand-dark); line-height: 1.4;
    }
    .sidebar-post-date {
      font-size: 0.65rem; font-weight: 500;
      color: #b09080; margin-top: 3px;
    }

    /* Paylaş */
    .post-share {
      display: flex; align-items: center; gap: 12px;
      flex-wrap: wrap;
      padding-top: 32px; margin-top: 32px;
      border-top: 1px solid #e8d8d0;
    }
    .post-share-label {
      font-size: 0.72rem; font-weight: 700; letter-spacing: 0.1em;
      text-transform: uppercase; color: #9a7060;
    }
    .share-btn {
      width: 38px; height: 38px; border-radius: 10px;
      display: flex; align-items: center; justify-content: center;
      font-size: 1rem; text-decoration: none;
      transition: transform 0.15s, opacity 0.2s;
    }
    .share-btn:hover { transform: translateY(-2px); opacity: 0.85; }
    .share-fb { background: #1877f2; color: #fff !important; }
    .share-tw { background: #000; color: #fff !important; }
    .share-wp { background: #25d366; color: #fff !important; }

    @media (max-width: 991px) {
      .post-sidebar { position: static; margin-top: 40px; }
      .post-hero { aspect-ratio: 16/7; }
    }
    @media (max-width: 576px) {
      .post-hero { aspect-ratio: 4/3; }
      .post-body { padding: 40px 0 70px; }
    }


        /* ── SAYFA BAŞLIĞI ── */
    .page-hero {
      background: var(--brand-dark);
      padding: 70px 0 80px;
      text-align: center;
      position: relative; overflow: hidden;
    }
    .page-hero::before {
      content: '';
      position: absolute; inset: 0;
      background-image: radial-gradient(circle, rgba(255,255,255,0.04) 1px, transparent 1px);
      background-size: 22px 22px;
    }
    .page-hero-label {
      font-size: 0.68rem; font-weight: 700; letter-spacing: 0.22em;
      text-transform: uppercase; color: rgba(255,255,255,0.5);
      margin-bottom: 12px; position: relative; z-index: 1;
    }
    .page-hero-title {
      font-size: clamp(2rem, 4vw, 3.2rem); font-weight: 800;
      color: #fff; line-height: 1.1; margin-bottom: 16px;
      position: relative; z-index: 1;
    }
    .page-hero-title span { color: #c8a090; }
    .page-hero-sub {
      font-size: 0.95rem; color: rgba(255,255,255,0.55);
      max-width: 480px; margin: 0 auto; line-height: 1.7;
      position: relative; z-index: 1;
    }

    /* ── İLETİŞİM BİLGİLERİ ── */
    .contact-info-section { padding: 70px 0 0; }

    .section-label {
      font-size: 0.68rem; font-weight: 700; letter-spacing: 0.22em;
      text-transform: uppercase; color: var(--brand-accent); margin-bottom: 12px;
    }
    .section-title {
      font-size: clamp(1.6rem, 3vw, 2.2rem); font-weight: 800;
      color: var(--brand-dark); line-height: 1.15; margin-bottom: 8px;
    }
    .section-title em {
      font-family: 'Playfair Display', serif;
      font-style: italic; color: var(--brand-accent);
    }
    .section-sub {
      font-size: 0.9rem; color: #7a5a4a; line-height: 1.7; margin-bottom: 0;
    }

    /* İletişim kartları */
    .contact-card {
     background: #fff;
    border-radius: 20px;
    padding: 30px 26px;
    height: 100%;
    border: 1px solid #5c2d1d;
    transition: border-color 0.25s, box-shadow 0.25s, transform 0.25s;
    text-decoration: none;
    display: flex;
    flex-direction: column;
    flex-wrap: nowrap;
    align-content: center;
    justify-content: center;
    align-items: center;
    }
    .contact-card:hover {
      border-color: #d4bfb3;
      box-shadow: 0 8px 28px rgba(60,30,20,0.10);
      transform: translateY(-3px);
    }
    .contact-card-icon {
      width: 52px; height: 52px; border-radius: 14px;
      background: #f0e8e0;
      display: flex; align-items: center; justify-content: center;
      font-size: 1.3rem; color: var(--brand-dark);
      margin-bottom: 18px;
      transition: background 0.25s;
    }
    .contact-card:hover .contact-card-icon { background: var(--brand-dark); color: #fff; }
    .contact-card-label {
      font-size: 0.62rem; font-weight: 700; letter-spacing: 0.14em;
      text-transform: uppercase; color: var(--brand-accent); margin-bottom: 8px;
    }
    .contact-card-value {
      font-size: 1.05rem; font-weight: 800;
      color: var(--brand-dark); line-height: 1.3; margin-bottom: 6px;
    }
    .contact-card-sub {
      font-size: 0.78rem; color: #9a7060; font-weight: 500;
    }

    /* ── GOOGLE MAPS ── */
    .map-section { padding: 60px 0 0; }

    .map-wrap {
      border-radius: 24px;
      overflow: hidden;
      box-shadow: 0 8px 32px rgba(60,30,20,0.10);
      line-height: 0;
    }
    .map-wrap iframe {
      width: 100%;
      height: 420px;
      border: none;
      display: block;
      filter: grayscale(20%) contrast(1.05);
    }

    /* ── SSS ── */
    .faq-section { padding: 70px 0 90px; }

    .faq-list { display: flex; flex-direction: column; gap: 10px; margin-top: 8px; }

    .faq-item {
      background: #fff;
      border-radius: 16px;
      overflow: hidden;
      border: 1.5px solid transparent;
      transition: border-color 0.25s;
    }
    .faq-item.is-open { border-color: #d4bfb3; }

    .faq-header {
      display: flex; align-items: center; justify-content: space-between;
      gap: 16px; padding: 20px 24px;
      cursor: pointer; user-select: none;
    }
    .faq-question {
      font-size: 0.92rem; font-weight: 700;
      color: var(--brand-dark); line-height: 1.4;
    }
    .faq-chevron {
      width: 32px; height: 32px; border-radius: 50%;
      background: #f0e8e0;
      display: flex; align-items: center; justify-content: center;
      font-size: 0.85rem; color: var(--brand-accent);
      flex-shrink: 0;
      transition: background 0.2s, transform 0.3s;
    }
    .faq-item.is-open .faq-chevron {
      background: var(--brand-dark); color: #fff;
      transform: rotate(180deg);
    }

    .faq-body {
      max-height: 0; overflow: hidden;
      transition: max-height 0.35s cubic-bezier(0.4,0,0.2,1);
    }
    .faq-item.is-open .faq-body { max-height: 300px; }

    .faq-answer {
      padding: 0 24px 22px;
      font-size: 0.88rem; color: #6b4c3b; line-height: 1.8;
      border-top: 1px solid #f0e8e0;
      padding-top: 16px;
    }

    /* ── ACİL CTA ── */
    .emergency-cta {
      background: var(--brand-dark);
      border-radius: 24px;
      padding: 52px 40px;
      text-align: center;
      position: relative; overflow: hidden;
      margin-top: 60px;
    }
    .emergency-cta::before {
      content: '';
      position: absolute; inset: 0;
      background-image: radial-gradient(circle, rgba(255,255,255,0.04) 1px, transparent 1px);
      background-size: 20px 20px;
    }
    .emergency-cta-title {
      font-size: clamp(1.5rem, 3.5vw, 2.2rem); font-weight: 900;
      color: #fff; text-transform: uppercase; letter-spacing: -0.01em;
      margin-bottom: 12px; position: relative; z-index: 1;
    }
    .emergency-cta-sub {
      font-size: 0.9rem; color: rgba(255,255,255,0.6);
      margin-bottom: 32px; position: relative; z-index: 1;
    }
    .emergency-btns {
      display: flex; gap: 14px; justify-content: center;
      flex-wrap: wrap; position: relative; z-index: 1;
    }
    .e-btn-phone {
      background: #fff; color: var(--brand-dark) !important;
      font-size: 0.92rem; font-weight: 700;
      border-radius: 12px; padding: 0.9rem 2rem;
      display: inline-flex; align-items: center; gap: 10px;
      text-decoration: none; transition: background 0.2s, transform 0.15s;
    }
    .e-btn-phone:hover { background: #f0e8e0; transform: translateY(-2px); color: var(--brand-dark) !important; }
    .e-btn-wp {
      background: #25d366; color: #fff !important;
      font-size: 0.92rem; font-weight: 700;
      border-radius: 12px; padding: 0.9rem 2rem;
      display: inline-flex; align-items: center; gap: 10px;
      text-decoration: none; transition: background 0.2s, transform 0.15s;
    }
    .e-btn-wp:hover { background: #1ebe5d; transform: translateY(-2px); color: #fff !important; }

    @media (max-width: 576px) {
      .page-hero { padding: 50px 0 60px; }
      .contact-info-section { padding: 52px 0 0; }
      .map-wrap iframe { height: 300px; }
      .emergency-cta { padding: 40px 20px; }
      .e-btn-phone, .e-btn-wp { width: 100%; justify-content: center; }
    }