 * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
    }

    body {
      font-family: 'Poppins', sans-serif;
      min-height: 100vh;
      position: relative;
    }

        ::-webkit-scrollbar {
    width: 10px;
    }

    /* Track */
    ::-webkit-scrollbar-track {
    background: #d3d3d3; 
    }
    
    /* Handle */
    ::-webkit-scrollbar-thumb {
    background: #9f2ecd; 
    }

    /* Handle on hover */
    ::-webkit-scrollbar-thumb:hover {
    background: #9f2ecd; 
    }

    /* Background */
    .background {
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background-image: url('../img/ezgi-oktay.png');
      background-size: cover;
      background-position: center;
      background-repeat: no-repeat;
      z-index: -2;
    }

    .background-overlay {
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background-color: rgba(21, 0, 44, 0.7);
      z-index: -1;
    }

    /* Top Bar */
    .top-bar {
      padding: 15px 0;
      font-size: 13px;
    }
a.glink{margin-right: 5px;}

    .top-bar .container {
      max-width: 1400px;
      margin: 0 auto;
      padding: 0 20px;
      display: flex;
      justify-content: space-between;
      align-items: center;
      flex-wrap: wrap;
      gap: 10px;
    }

    .top-bar-left {
      display: flex;
      align-items: center;
      gap: 20px;
      flex-wrap: wrap;
    }

    .top-bar-item {
      display: flex;
      align-items: center;
      gap: 8px;
      color: white;
    }

    .top-bar-item svg {
      width: 14px;
      height: 14px;
      color: #9c27b0;
    }

    .top-bar-item a {
      color: white;
      text-decoration: none;
      transition: color 0.3s;
    }

    .top-bar-item a:hover {
      color: #9c27b0;
    }

    .social-links {
      display: flex;
      gap: 5px;
    }

    .social-link {
      width: 36px;
      height: 36px;
      border: 1px solid rgba(255, 255, 255, 0.2);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      color: white;
      text-decoration: none;
      transition: all 0.3s;
    }

    .social-link:hover {
      background-color: #9c27b0;
      border-color: #9c27b0;
    }

    .social-link svg {
      width: 16px;
      height: 16px;
    }

    /* Header */
    .header {
      background: rgba(255, 255, 255, 0.1);
      backdrop-filter: blur(12px);
      -webkit-backdrop-filter: blur(12px);
      border-bottom: 1px solid rgba(255, 255, 255, 0.1);
      position: sticky;
      top: 0;
      z-index: 100;
      transition: background 0.3s ease, border-color 0.3s ease;
    }

    .header.scrolled {
      background: rgb(58 16 75 / 60%);
      border-bottom-color: rgba(255, 255, 255, 0.06);
    }

    .header .container {
      max-width: 1400px;
      margin: 0 auto;
      padding: 15px 20px;
      width: 100%;
      display: flex;
      justify-content: space-between;
      align-items: center;
    }

    .logo {
      display: flex;
      align-items: center;
      gap: 12px;
      text-decoration: none;
    }

    .logo-icon {
      width: 50px;
      height: 50px;
    }

    .logo-text {
      display: flex;
      flex-direction: column;
    }

    .logo-text img{width: 195px;}

    .logo-text small {
      font-size: 11px;
      color: rgba(255, 255, 255, 0.7);
    }

    .logo-text span {
      font-size: 20px;
      font-weight: 600;
      color: white;
    }

    .nav-desktop {
      display: none;
      align-items: center;
      gap: 30px;
    }

    .nav-desktop a {
      color: white;
      text-decoration: none;
      font-weight: 500;
      transition: color 0.3s;
      display: flex;
      align-items: center;
      gap: 4px;
    }

    .nav-desktop a:hover {
      color: #9c27b0;
    }

    .nav-desktop a svg {
      width: 16px;
      height: 16px;
    }

    /* Main Menu UL Structure */
    .main-menu {
      display: flex;
      align-items: center;
      gap: 30px;
      list-style: none;
      margin: 0;
      padding: 0;
    }

    .main-menu > li {
      position: relative;
    }

    .main-menu > li > a {
      color: white;
      text-decoration: none;
      font-weight: 500;
      transition: color 0.3s;
      display: flex;
      align-items: center;
      gap: 4px;
      padding: 10px 0;
    }

    .main-menu > li > a:hover {
      color: #9c27b0;
    }

    .main-menu > li > a svg {
      width: 16px;
      height: 16px;
      transition: transform 0.3s;
    }

    .main-menu > li:hover > a svg {
      transform: rotate(180deg);
    }

    /* Sub Menu */
    .sub-menu {
      position: absolute;
      top: 100%;
      left: 0;
      min-width: 250px;
      background: rgba(45, 27, 66, 0.95);
      backdrop-filter: blur(12px);
      -webkit-backdrop-filter: blur(12px);
      border-radius: 8px;
      padding: 10px 0;
      list-style: none;
      opacity: 0;
      visibility: hidden;
      transform: translateY(10px);
      transition: all 0.3s ease;
      box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
      border: 1px solid rgba(255, 255, 255, 0.1);
    }

    .menu-item-has-children:hover > .sub-menu {
      opacity: 1;
      visibility: visible;
      transform: translateY(0);
    }

    .sub-menu li {
      margin: 0;
    }

    .sub-menu li a {
      display: block;
      padding: 12px 20px;
      color: rgba(255, 255, 255, 0.9);
      text-decoration: none;
      font-size: 14px;
      transition: all 0.3s;
      border-left: 3px solid transparent;
    }

    .sub-menu li a:hover {
      color: #9c27b0;
      background: rgba(156, 39, 176, 0.1);
      border-left-color: #9c27b0;
    }

    .header-right {
      display: flex;
      align-items: center;
      gap: 15px;
    }

    .whatsapp-btn {
      width: 44px;
      height: 44px;
      background-color: #9f2ecd;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      color: white;
      transition: transform 0.3s;
    }

    .whatsapp-btn:hover {
      transform: scale(1.1);
    }

    .whatsapp-btn svg {
      width: 22px;
      height: 22px;
    }

    .phone-info {
      display: none;
      flex-direction: column;
    }

    .phone-info small {
      font-size: 11px;
      color: rgba(255, 255, 255, 0.7);
    }

    .phone-info span {
      color: #f2a4ff;
      font-weight: 600;
      font-size: 15px;
    }

    .menu-dots {
      display: none;
      flex-direction: column;
      gap: 3px;
      padding: 10px;
      cursor: pointer;
    }

    .menu-dots span {
      display: flex;
      gap: 3px;
    }

    .menu-dots span i {
      width: 4px;
      height: 4px;
      background-color: white;
      border-radius: 50%;
    }

    .mobile-menu-btn {
      display: flex;
      flex-direction: column;
      justify-content: center;
      align-items: center;
      width: 40px;
      height: 40px;
      background: rgba(255, 255, 255, 0.1);
      border: none;
      border-radius: 8px;
      cursor: pointer;
      padding: 8px;
      transition: background 0.3s;
    }

    .mobile-menu-btn:hover {
      background: rgba(255, 255, 255, 0.2);
    }

    .mobile-menu-btn span {
      display: block;
      width: 22px;
      height: 2px;
      background-color: white;
      transition: all 0.3s ease;
      transform-origin: center;
    }

    .mobile-menu-btn span:nth-child(1) {
      margin-bottom: 5px;
    }

    .mobile-menu-btn span:nth-child(3) {
      margin-top: 5px;
    }

    /* Hamburger Animation */
    .mobile-menu-btn.active span:nth-child(1) {
      transform: rotate(45deg) translate(5px, 5px);
    }

    .mobile-menu-btn.active span:nth-child(2) {
      opacity: 0;
      transform: scaleX(0);
    }

    .mobile-menu-btn.active span:nth-child(3) {
      transform: rotate(-45deg) translate(5px, -5px);
    }

    /* Mobile Navigation */
    .nav-mobile {
      max-height: 0;
      overflow: hidden;
      transition: max-height 0.4s ease, padding 0.4s ease;
      padding: 0 20px;
      background: rgba(45, 27, 66, 0.5);
      backdrop-filter: blur(10px);
      -webkit-backdrop-filter: blur(10px);
    }

    .nav-mobile.active {
      max-height: 600px;
      padding: 20px;
      border-top: 1px solid rgba(255, 255, 255, 0.1);
    }

    .nav-mobile ul {
      list-style: none;
      padding: 0;
      margin: 0;
    }

    .nav-mobile > ul > li {
      opacity: 0;
      transform: translateX(-20px);
      transition: all 0.3s ease;
    }

    .nav-mobile.active > ul > li {
      opacity: 1;
      transform: translateX(0);
    }

    .nav-mobile.active > ul > li:nth-child(1) { transition-delay: 0.1s; }
    .nav-mobile.active > ul > li:nth-child(2) { transition-delay: 0.15s; }
    .nav-mobile.active > ul > li:nth-child(3) { transition-delay: 0.2s; }
    .nav-mobile.active > ul > li:nth-child(4) { transition-delay: 0.25s; }
    .nav-mobile.active > ul > li:nth-child(5) { transition-delay: 0.3s; }
    .nav-mobile.active > ul > li:nth-child(6) { transition-delay: 0.35s; }

    .nav-mobile > ul > li > a {
      display: flex;
      align-items: center;
      justify-content: space-between;
      color: white;
      text-decoration: none;
      padding: 14px 0;
      font-weight: 500;
      font-size: 16px;
      transition: all 0.3s;
      border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }

    .nav-mobile > ul > li:last-child > a {
      border-bottom: none;
    }

    .nav-mobile > ul > li > a:hover {
      color: #9c27b0;
      padding-left: 10px;
    }

    .nav-mobile > ul > li > a svg {
      width: 18px;
      height: 18px;
      transition: transform 0.3s ease;
    }

    .nav-mobile .menu-item-has-children.active > a svg {
      transform: rotate(180deg);
    }

    .nav-mobile .menu-item-has-children.active > a {
      color: #9c27b0;
    }

    .nav-mobile .sub-menu {
      position: static;
      opacity: 1;
      visibility: visible;
      transform: none;
      min-width: auto;
      box-shadow: none;
      border: none;
      max-height: 0;
      overflow: hidden;
      transition: max-height 0.3s ease, padding 0.3s ease;
      background: rgba(156, 39, 176, 0.15);
      border-radius: 8px;
      margin: 0;
      padding: 0;
    }

    .nav-mobile .sub-menu.active {
      max-height: 400px;
      padding: 10px 0;
      margin: 10px 0;
    }

    .nav-mobile .sub-menu li a {
      display: block;
      padding: 12px 20px;
      color: rgba(255, 255, 255, 0.85);
      text-decoration: none;
      font-size: 14px;
      transition: all 0.3s;
      border-left: 3px solid transparent;
    }

    .nav-mobile .sub-menu li a:hover {
      color: #9c27b0;
      background: rgba(156, 39, 176, 0.1);
      border-left-color: #9c27b0;
      padding-left: 25px;
    }

    /* Services Section */
    .services-section {
      padding: 100px 0;
      position: relative;
      overflow: hidden;
      background: url('../img/ezgi-oktay.png') center center / cover no-repeat fixed;
    }

    .services-section::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: rgba(45, 27, 66, 0.85);
      z-index: 0;
    }

    .services-section .container {
      max-width: 1400px;
      margin: 0 auto;
      padding: 0 20px;
      width: 100%;
      position: relative;
      z-index: 1;
    }

    .services-header {
      text-align: center;
      margin-bottom: 60px;
    }

    .services-header .section-tag {
      display: inline-block;
      background: rgba(156, 39, 176, 0.2);
      color: #ce93d8;
      padding: 8px 16px;
      border-radius: 30px;
      font-size: 14px;
      font-weight: 600;
      margin-bottom: 20px;
      text-transform: uppercase;
      letter-spacing: 1px;
    }

    .services-header .section-title {
      font-size: 36px;
      color: white;
      margin-bottom: 15px;
    }

    .services-header p {
      color: rgba(255, 255, 255, 0.7);
      font-size: 16px;
      max-width: 600px;
      margin: 0 auto;
    }

    .services-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 25px;
    }

    .service-card {
      background: rgba(255, 255, 255, 0.05);
      backdrop-filter: blur(10px);
      -webkit-backdrop-filter: blur(10px);
      border: 1px solid rgba(255, 255, 255, 0.1);
      border-radius: 16px;
      padding: 35px 25px;
      text-align: center;
      transition: all 0.4s ease;
      position: relative;
      overflow: hidden;
    }

    .service-card::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: linear-gradient(135deg, rgba(156, 39, 176, 0.2) 0%, transparent 100%);
      opacity: 0;
      transition: opacity 0.4s ease;
    }

    .service-card:hover {
      transform: translateY(-10px);
      border-color: rgba(156, 39, 176, 0.5);
      box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    }

    .service-card:hover::before {
      opacity: 1;
    }

    .service-card .icon {
      width: 70px;
      height: 70px;
      background: linear-gradient(135deg, #9c27b0, #7b1fa2);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      margin: 0 auto 20px;
      position: relative;
      z-index: 1;
      transition: all 0.4s ease;
    }

    .service-card:hover .icon {
      transform: scale(1.1);
      box-shadow: 0 10px 30px rgba(156, 39, 176, 0.4);
    }

    .service-card .icon svg {
      width: 32px;
      height: 32px;
      color: white;
    }

    .service-card h2 {
      font-size: 18px;
      color: white;
      margin-bottom: 10px;
      position: relative;
      z-index: 1;
    }

    .service-card p {
      color: rgba(255, 255, 255, 0.6);
      font-size: 14px;
      line-height: 1.6;
      position: relative;
      z-index: 1;
    }

    @media (max-width: 1200px) {
      .services-grid {
        grid-template-columns: repeat(3, 1fr);
      }
    }

    @media (max-width: 900px) {
      .services-grid {
        grid-template-columns: repeat(2, 1fr);
      }
    }

    @media (max-width: 576px) {
      .services-section {
        padding: 60px 0;
      }

      .services-header .section-title {
        font-size: 28px;
      }

      .services-grid {
        grid-template-columns: 1fr;
        gap: 20px;
      }

      .service-card {
        padding: 30px 20px;
      }
    }

    /* Process Section */
    .process-section {
      padding: 100px 0;
      background: #f6dfff;
      position: relative;
      overflow: hidden;
    }

    .process-section::before,
    .process-section::after {
      content: '';
      position: absolute;
      width: 360px;
      height: 360px;
      background: radial-gradient(circle, rgba(156, 39, 176, 0.15), transparent 70%);
      z-index: 0;
    }

    .process-section::before {
      top: -120px;
      right: -120px;
    }

    .process-section::after {
      bottom: -140px;
      left: -120px;
    }

    .process-section .container {
      max-width: 1400px;
      margin: 0 auto;
      padding: 0 20px;
      width: 100%;
      position: relative;
      z-index: 1;
    }

    .process-header {
      text-align: center;
      margin-bottom: 60px;
    }

    .process-header .section-tag {
      display: inline-block;
      background: rgba(156, 39, 176, 0.12);
      color: #7b1fa2;
      padding: 8px 16px;
      border-radius: 30px;
      font-size: 14px;
      font-weight: 600;
      margin-bottom: 18px;
      text-transform: uppercase;
      letter-spacing: 1px;
    }

    .process-header .section-title {
      font-size: 36px;
      color: #2b1b3f;
      margin-bottom: 14px;
    }

    .process-header p {
      color: #5f5571;
      font-size: 16px;
      max-width: 640px;
      margin: 0 auto;
    }

    .process-timeline {
      position: relative;
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 24px;
    }

    .process-timeline::before {
      content: '';
      position: absolute;
      top: 26px;
      left: 20px;
      right: 20px;
      height: 2px;
      background: linear-gradient(90deg, rgba(156, 39, 176, 0.2), rgba(156, 39, 176, 0.6), rgba(156, 39, 176, 0.2));
    }

    .process-step {
      position: relative;
      padding-top: 50px;
    }

    .step-index {
      width: 52px;
      height: 52px;
      background: linear-gradient(135deg, #9c27b0, #7b1fa2);
      color: white;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      font-weight: 700;
      letter-spacing: 1px;
      box-shadow: 0 12px 30px rgba(123, 31, 162, 0.35);
      position: absolute;
      top: 0;
      left: 50%;
      transform: translateX(-50%);
      z-index: 2;
    }

    .step-card {
      background: white;
      border-radius: 18px;
      padding: 32px 26px;
      text-align: center;
      border: 1px solid rgba(123, 31, 162, 0.08);
      box-shadow: 0 18px 40px rgba(43, 27, 63, 0.08);
      transition: transform 0.35s ease, box-shadow 0.35s ease;
    }

    .process-step:hover .step-card {
      transform: translateY(-8px);
      box-shadow: 0 26px 50px rgba(43, 27, 63, 0.14);
    }

    .step-icon {
      width: 58px;
      height: 58px;
      border-radius: 16px;
      background: rgba(156, 39, 176, 0.12);
      display: flex;
      align-items: center;
      justify-content: center;
      margin: 0 auto 16px;
      color: #7b1fa2;
    }

    .step-icon svg {
      width: 28px;
      height: 28px;
    }

    .step-card .step-title {
      font-size: 18px;
      color: #2b1b3f;
      margin-bottom: 10px;
    }

    .step-card p {
      color: #5f5571;
      font-size: 14px;
      line-height: 1.6;
    }

    @media (max-width: 1200px) {
      .process-timeline {
        grid-template-columns: repeat(2, 1fr);
      }

      .process-timeline::before {
        top: 26px;
        left: 10%;
        right: 10%;
      }
    }

    @media (max-width: 768px) {
      .process-section {
        padding: 70px 0;
      }

      .process-header .section-title {
        font-size: 28px;
      }

      .process-timeline {
        grid-template-columns: 1fr;
      }

      .process-timeline::before {
        top: 0;
        bottom: 0;
        left: 26px;
        right: auto;
        width: 2px;
        height: auto;
        background: linear-gradient(180deg, rgba(156, 39, 176, 0.2), rgba(156, 39, 176, 0.6), rgba(156, 39, 176, 0.2));
      }

      .process-step {
        padding-top: 0;
        padding-left: 60px;
      }

      .step-index {
        left: 26px;
        transform: translateX(-50%);
      }

      .step-card {
        text-align: left;
      }

      .step-icon {
        margin: 0 0 16px 0;
      }
    }

    /* Blog Section */
    .blog-section {
      padding: 100px 0;
      background: #f6f2fb;
    }

    .blog-section .container {
      max-width: 1400px;
      margin: 0 auto;
      padding: 0 20px;
      width: 100%;
    }

    .blog-header {
      text-align: center;
      margin-bottom: 50px;
    }

    .blog-header .section-tag {
      display: inline-block;
      background: rgba(156, 39, 176, 0.12);
      color: #7b1fa2;
      padding: 8px 16px;
      border-radius: 30px;
      font-size: 14px;
      font-weight: 600;
      margin-bottom: 18px;
      text-transform: uppercase;
      letter-spacing: 1px;
    }

    .blog-header .section-title {
      font-size: 36px;
      color: #2b1b3f;
      margin-bottom: 12px;
    }

    .blog-header p {
      color: #5f5571;
      font-size: 16px;
      max-width: 620px;
      margin: 0 auto;
    }

    .blog-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 24px;
    }

    .blog-card {
      background: white;
      border-radius: 18px;
      overflow: hidden;
      box-shadow: 0 18px 40px rgba(43, 27, 63, 0.08);
      transition: transform 0.35s ease, box-shadow 0.35s ease;
      display: flex;
      flex-direction: column;
      text-decoration: none;
      color: inherit;
    }

    .blog-card:hover {
      transform: translateY(-8px);
      box-shadow: 0 26px 50px rgba(43, 27, 63, 0.14);
    }

    .blog-thumb {
      position: relative;
      overflow: hidden;
      aspect-ratio: 4 / 3;
    }

    .blog-thumb img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      display: block;
      transition: transform 0.4s ease;
    }

    .blog-card:hover .blog-thumb img {
      transform: scale(1.05);
    }

    .blog-tag {
      position: absolute;
      left: 16px;
      bottom: 16px;
      background: rgba(43, 27, 63, 0.8);
      color: white;
      padding: 6px 12px;
      border-radius: 999px;
      font-size: 12px;
      letter-spacing: 0.3px;
    }

    .blog-content {
      padding: 22px 20px 24px;
      display: flex;
      flex-direction: column;
      gap: 10px;
    }

    .blog-content h2 {
      font-size: 16px;
      color: #2b1b3f;
      line-height: 1.4;
    }

    .blog-content p {
      font-size: 14px;
      color: #5f5571;
      line-height: 1.6;
    }

    .blog-readmore {
      align-self: flex-start;
      margin-top: 6px;
      background: #9f2ecd;
      color: white;
      padding: 8px 16px;
      border-radius: 999px;
      font-size: 13px;
      font-weight: 600;
      letter-spacing: 0.2px;
    }

    .blog-cta {
      text-align: center;
      margin-top: 40px;
    }

    .blog-cta-btn {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      padding: 12px 26px;
      border-radius: 999px;
      background: linear-gradient(135deg, #9c27b0, #7b1fa2);
      color: white;
      text-decoration: none;
      font-weight: 600;
      box-shadow: 0 16px 30px rgba(123, 31, 162, 0.25);
      transition: transform 0.3s ease, box-shadow 0.3s ease;
    }

    .blog-cta-btn:hover {
      transform: translateY(-2px);
      box-shadow: 0 20px 36px rgba(123, 31, 162, 0.3);
    }

    @media (max-width: 1200px) {
      .blog-grid {
        grid-template-columns: repeat(3, 1fr);
      }
    }

    @media (max-width: 900px) {
      .blog-grid {
        grid-template-columns: repeat(2, 1fr);
      }
    }

    @media (max-width: 768px) {
      .blog-section {
        padding: 70px 0;
      }

      .blog-header .section-title {
        font-size: 28px;
      }
    }

    @media (max-width: 576px) {
      .blog-grid {
        grid-template-columns: 1fr;
      }
    }

    /* WhatsApp Floating Widget */
.wa-float{
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 9999;

  display: inline-flex;
  align-items: center;
  gap: 10px;

  background: #9f2ecd;
  color: #fff;
  text-decoration: none;

  padding: 12px 14px;
  border-radius: 999px;

  box-shadow: 0 14px 40px rgba(159, 46, 205, 0.35);
  transform: translateZ(0);
  transition: transform .22s ease, box-shadow .22s ease, filter .22s ease;
}

.wa-float:hover{
  transform: translateY(-3px);
  box-shadow: 0 18px 50px rgba(159, 46, 205, 0.45);
  filter: brightness(1.02);
}

/* Pulse rings */
.wa-pulse{
  position: absolute;
  inset: -10px;
  border-radius: 999px;
  pointer-events: none;
}

.wa-pulse::before,
.wa-pulse::after{
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 999px;
  border: 2px solid rgba(159, 46, 205, 0.35);
  animation: waPulse 1.9s ease-out infinite;
}

.wa-pulse::after{
  animation-delay: .65s;
  border-color: rgba(159, 46, 205, 0.22);
}

@keyframes waPulse{
  0%   { transform: scale(0.85); opacity: 0.9; }
  70%  { transform: scale(1.12); opacity: 0; }
  100% { transform: scale(1.12); opacity: 0; }
}

/* Icon */
.wa-icon{
  width: 42px;
  height: 42px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;

  background: rgba(255,255,255,0.16);
  border: 1px solid rgba(255,255,255,0.18);
  box-shadow: inset 0 0 0 1px rgba(255,255,255,0.06);
}

.wa-icon svg{
  width: 24px;
  height: 24px;
  display: block;
}

/* Label */
.wa-label{
  display: grid;
  line-height: 1.05;
  padding-right: 4px;
}

.wa-label strong{
  font-size: 13px;
  letter-spacing: 0.2px;
}

.wa-label small{
  font-size: 12px;
  opacity: 0.92;
}

/* Mobile: label hidden for compact look */
@media (max-width: 520px){
  .wa-float{
    padding: 12px;
    gap: 0;
  }
  .wa-label{
    display: none;
  }
}


    /* Footer */
    .site-footer {
      background: rgba(21, 0, 44, 0.92);
      color: rgba(255, 255, 255, 0.75);
      padding: 80px 0 30px;
      position: relative;
      overflow: hidden;
    }

    .site-footer::before {
      content: '';
      position: absolute;
      top: -120px;
      right: -120px;
      width: 320px;
      height: 320px;
      background: radial-gradient(circle, rgba(156, 39, 176, 0.35), transparent 70%);
      filter: blur(6px);
      z-index: 0;
    }

    .site-footer .container {
      max-width: 1400px;
      margin: 0 auto;
      padding: 0 20px;
      width: 100%;
      position: relative;
      z-index: 1;
    }

    .footer-grid {
      display: grid;
      grid-template-columns: 1.2fr 1fr 1fr 1.2fr;
      gap: 40px;
      margin-bottom: 40px;
    }

    .footer-brand img {
      width: 190px;
      margin-bottom: 14px;
    }

    .footer-brand p {
      line-height: 1.7;
      margin-bottom: 18px;
      color: rgba(255, 255, 255, 0.7);
    }

    .footer-social {
      display: flex;
      gap: 12px;
    }

    .footer-social a {
      width: 38px;
      height: 38px;
      border-radius: 50%;
      background: rgba(255, 255, 255, 0.08);
      display: inline-flex;
      align-items: center;
      justify-content: center;
      color: white;
      transition: all 0.3s;
      text-decoration: none;
    }

    .footer-social a:hover {
      background: #9c27b0;
      transform: translateY(-2px);
    }

    .footer-social svg {
      width: 16px;
      height: 16px;
    }

    .footer-links h4,
    .footer-contact h4 {
      color: white;
      font-size: 16px;
      margin-bottom: 16px;
    }

    .footer-links ul {
      list-style: none;
      padding: 0;
      margin: 0;
      display: grid;
      gap: 10px;
    }

    .footer-links a {
      color: rgba(255, 255, 255, 0.7);
      text-decoration: none;
      transition: color 0.3s;
    }

    .footer-links a:hover {
      color: #9c27b0;
    }

    .footer-contact .contact-item {
      display: flex;
      gap: 10px;
      align-items: flex-start;
      margin-bottom: 12px;
      color: rgba(255, 255, 255, 0.75);
      line-height: 1.6;
    }

    .footer-contact .contact-item svg {
      width: 18px;
      height: 18px;
      color: #9c27b0;
      flex-shrink: 0;
      margin-top: 2px;
    }

    .footer-contact a {
      color: rgba(255, 255, 255, 0.75);
      text-decoration: none;
    }

    .footer-contact a:hover {
      color: white;
    }

    .footer-cta {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      padding: 12px 20px;
      border-radius: 999px;
      background: linear-gradient(135deg, #9c27b0, #7b1fa2);
      color: white;
      text-decoration: none;
      font-weight: 600;
      margin-top: 10px;
      box-shadow: 0 12px 26px rgba(156, 39, 176, 0.35);
      transition: transform 0.3s ease, box-shadow 0.3s ease;
    }

    .footer-cta:hover {
      transform: translateY(-2px);
      box-shadow: 0 16px 30px rgba(156, 39, 176, 0.45);
    }

    .footer-bottom {
      border-top: 1px solid rgba(255, 255, 255, 0.1);
      padding-top: 20px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 12px;
      flex-wrap: wrap;
      font-size: 13px;
    }

    .footer-legal {
      display: flex;
      gap: 16px;
    }

    .footer-legal a {
      color: rgba(255, 255, 255, 0.65);
      text-decoration: none;
    }

    .footer-legal a:hover {
      color: white;
    }

    @media (max-width: 1100px) {
      .footer-grid {
        grid-template-columns: 1fr 1fr;
      }
    }

    @media (max-width: 700px) {
      .site-footer {
        padding: 60px 0 24px;
      }

      .footer-grid {
        grid-template-columns: 1fr;
      }
    }

/* About Section */
.about-section {
  padding: 100px 0;
  background: #f8f7fc;
}

.about-section .container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 20px;
  width: 100%;
}

.about-content {
  display: flex;
  align-items: center;
  gap: 60px;
}

.about-image {
  flex: 0 0 400px;
  position: relative;
}

.about-image img {
  width: 100%;
  border-radius: 16px;
  box-shadow: 0 20px 60px rgba(45, 27, 66, 0.15);
}

.about-image::before {
  content: '';
  position: absolute;
  top: -20px;
  left: -20px;
  width: 100%;
  height: 100%;
  border: 3px solid #9c27b0;
  border-radius: 16px;
  z-index: -1;
}

.about-image::after {
  content: '';
  position: absolute;
  bottom: -15px;
  right: -15px;
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, #9c27b0, #7b1fa2);
  border-radius: 12px;
  z-index: -1;
}

.about-text {
  flex: 1;
}

.about-text .section-tag {
  display: inline-block;
  background: rgba(156, 39, 176, 0.10);
  color: #9c27b0;
  padding: 8px 16px;
  border-radius: 30px;
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.about-text h1 {
  font-size: 36px;
  color: #2d1b42;
  margin-bottom: 20px;
  line-height: 1.3;
}

.about-text .bio p {
  color: #555;
  font-size: 16px;
  line-height: 1.8;
  margin-bottom: 26px;
}

/* NEW: Expertise Grid */
.about-expertise {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-bottom: 35px;
}

.expertise-card {
  position: relative;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(156, 39, 176, 0.10);
  padding: 22px 20px;
  border-radius: 14px;
  box-shadow: 0 8px 30px rgba(17, 10, 28, 0.05);
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
  overflow: hidden;
}

.expertise-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(600px 180px at 30% 0%, rgba(156, 39, 176, 0.08), transparent 60%);
  pointer-events: none;
}

.expertise-card:hover {
  transform: translateY(-6px);
  border-color: rgba(156, 39, 176, 0.25);
  box-shadow: 0 16px 45px rgba(156, 39, 176, 0.14);
}

.expertise-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  margin-bottom: 14px;
  position: relative;
}

.expertise-icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: linear-gradient(135deg, #9c27b0, #7b1fa2);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 25px rgba(156, 39, 176, 0.22);
}

.expertise-icon svg {
  width: 26px;
  height: 26px;
  color: #fff;
}

.expertise-chip {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 7px 12px;
  border-radius: 999px;
  background: rgba(156, 39, 176, 0.10);
  border: 1px solid rgba(156, 39, 176, 0.12);
  color: #6e1b86;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.2px;
  white-space: nowrap;
}

.expertise-card .expertise-title {
  font-size: 18px;
  color: #2d1b42;
  margin: 0 0 8px 0;
  position: relative;
}

.expertise-card p {
  margin: 0;
  color: #6b6b6b;
  font-size: 14px;
  line-height: 1.65;
  position: relative;
}

/* Button */
.about-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: linear-gradient(135deg, #9c27b0, #7b1fa2);
  color: white;
  padding: 16px 32px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 700;
  transition: all 0.3s ease;
  box-shadow: 0 10px 30px rgba(156, 39, 176, 0.30);
}

.about-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 40px rgba(156, 39, 176, 0.40);
}

.about-btn svg {
  width: 20px;
  height: 20px;
  transition: transform 0.3s;
}

.about-btn:hover svg {
  transform: translateX(5px);
}

/* Responsive */
@media (max-width: 1024px) {
  .about-content {
    flex-direction: column;
    text-align: center;
  }

  .about-image {
    flex: none;
    width: 100%;
    max-width: 350px;
  }

  .about-image::before {
    top: -15px;
    left: -15px;
  }

  .about-expertise {
    grid-template-columns: repeat(2, 1fr);
  }

  .expertise-top {
    justify-content: center;
  }
}

@media (max-width: 768px) {
  .about-section {
    padding: 60px 0;
  }

  .about-text h1 {
    font-size: 28px;
  }

  .about-expertise {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .expertise-card {
    text-align: left;
    padding: 18px 18px;
  }

  .expertise-top {
    justify-content: space-between;
  }
}


    /* Hero Section */
    .hero {
      min-height: calc(100vh - 150px);
      display: flex;
      align-items: center;
      padding: 60px 0;
    }

    .hero .container {
      max-width: 1400px;
      margin: 0 auto;
      padding: 0 20px;
      width: 100%;
      display: flex;
      flex-direction: column;
      gap: 40px;
      display: grid;
    grid-template-columns: 40% 40%;
    }

    .hero-content {
      max-width: 600px;
    }

    .hero-content h1 {
      font-size: 42px;
      font-weight: 700;
      color: white;
      margin-bottom: 20px;
      line-height: 1.2;
    }

    .hero-content p {
      font-size: 16px;
      color: rgba(255, 255, 255, 0.9);
      margin-bottom: 8px;
      line-height: 1.6;
    }

    .detail-btn {
      display: inline-flex;
      align-items: center;
      gap: 0;
      background-color: white;
      color: #2d1b42;
      padding: 12px 12px 12px 28px;
      border-radius: 50px;
      text-decoration: none;
      font-weight: 500;
      margin-top: 25px;
      transition: all 0.3s;
    }

    .detail-btn:hover {
      transform: translateX(5px);
    }

    .detail-btn .arrow {
      width: 40px;
      height: 40px;
      background-color: #9c27b0;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      margin-left: 15px;
    }

    .detail-btn .arrow svg {
      width: 18px;
      height: 18px;
      color: white;
    }

    /* Appointment Form */
    .appointment-card {
      background: linear-gradient(135deg, #9c27b0 0%, #490b64 100%);
      border-radius: 20px;
      padding: 40px 30px;
      width: 100%;
      text-align: center;
      max-width: 100%;
    }

    .appointment-icon {
      width: 60px;
      height: 60px;
      margin: 0 auto 20px;
    }

    .appointment-card .card-title {
      text-align: center;
      color: white;
      font-size: 24px;
      font-weight: 700;
      margin-bottom: 8px;
    }

    .appointment-card > p {
      text-align: center;
      color: rgba(255, 255, 255, 0.9);
      font-size: 14px;
      margin-bottom: 25px;
    }

    .form-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 12px;
    }

    .form-group {
      position: relative;
    }

    .form-group.full-width {
      grid-column: span 2;
    }

    .form-group select,
    .form-group input {
      width: 100%;
      padding: 14px 18px;
      border: none;
      border-radius: 50px;
      font-size: 14px;
      font-family: 'Poppins', sans-serif;
      background-color: rgba(255, 255, 255, 0.25);
      color: white;
      outline: none;
      appearance: none;
      -webkit-appearance: none;
    }

    .form-group select::placeholder,
    .form-group input::placeholder {
      color: rgba(255, 255, 255, 0.8);
    }

    .form-group select option {
      color: #2d1b42;
      background: white;
    }

    .form-group .select-arrow {
      position: absolute;
      right: 18px;
      top: 50%;
      transform: translateY(-50%);
      pointer-events: none;
      color: white;
    }

    .form-group .select-arrow svg {
      width: 18px;
      height: 18px;
    }

    .submit-btn {
      width: 100%;
      padding: 16px;
      background-color: white;
      color: #2d1b42;
      border: none;
      border-radius: 50px;
      font-size: 16px;
      font-weight: 600;
      font-family: 'Poppins', sans-serif;
      cursor: pointer;
      transition: all 0.3s;
      margin-top: 8px;
    }

    .submit-btn:hover {
      background-color: #2d1b42;
      color: white;
    }

    /* Responsive */
    @media (min-width: 768px) {
      .hero .container {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
      }

      .hero-content h1 {
        font-size: 52px;
      }

      .appointment-card {
        flex-shrink: 0;
      }
    }

    @media (min-width: 1024px) {
      .nav-desktop {
        display: flex;
      }

      .phone-info {
        display: flex;
      }

      .menu-dots {
        display: flex;
      }

      .mobile-menu-btn {
        display: none;
      }

      .top-bar-left {
        gap: 30px;
      }
    }

    @media (max-width: 767px) {
      .top-bar-left {
        display: none;
      }

      .social-links {
        width: 100%;
        justify-content: center;
      }

          .hero .container {
  
      gap: 40px;
      display: grid;
    grid-template-columns: 100%;
    }


      .hero-content h1 {
        font-size: 32px;
      }

      .form-grid {
        grid-template-columns: 1fr;
      }

      .form-group.full-width {
        grid-column: span 1;
      }

      .appointment-card {
        max-width: 100%;
      }
    }

/* =============================================
   CF7 (Contact Form 7) — Genel
   ============================================= */
.wpcf7-form-control-wrap {
    display: block;
    width: 100%;
}
.wpcf7-form-control-wrap input,
.wpcf7-form-control-wrap select {
    width: 100%;
}

/* Hero kartındaki submit (beyaz) */
.appointment-card .wpcf7 .wpcf7-submit {
    width: 100%;
    background-color: #fff;
    color: #2d1b42;
    border: none;
    padding: 16px;
    border-radius: 50px;
    font-size: 1rem;
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    margin-top: 8px;
    letter-spacing: .3px;
}
.appointment-card .wpcf7 .wpcf7-submit:hover {
    background-color: #2d1b42;
    color: #fff;
}

/* =============================================
   CF7 — entry-content / sayfa içi form
   ============================================= */
.entry-content .wpcf7 {
    margin-top: 4px;
}

.entry-content .wpcf7-form-control-wrap {
    display: block;
    width: 100%;
    margin-bottom: 14px;
}

.entry-content .wpcf7 input[type="text"],
.entry-content .wpcf7 input[type="email"],
.entry-content .wpcf7 input[type="tel"],
.entry-content .wpcf7 input[type="url"],
.entry-content .wpcf7 input[type="number"],
.entry-content .wpcf7 select {
    width: 100%;
    display: block;
    padding: 13px 16px;
    border: 2px solid #c8bde6;
    border-radius: 10px;
    font-size: 14px;
    font-family: 'Poppins', sans-serif;
    color: #2d1b42;
    background: #fff;
    outline: none;
    transition: border-color .2s, box-shadow .2s;
    box-sizing: border-box;
}

.entry-content .wpcf7 input[type="text"]:focus,
.entry-content .wpcf7 input[type="email"]:focus,
.entry-content .wpcf7 input[type="tel"]:focus,
.entry-content .wpcf7 select:focus {
    border-color: #9c27b0;
    box-shadow: 0 0 0 3px rgba(156,39,176,.1);
}

.entry-content .wpcf7 input::placeholder,
.entry-content .wpcf7 textarea::placeholder {
    color: #aaa;
    opacity: 1;
}

/* Textarea — CF7'nin p/wrap sarmalayıcılarını kır */
.entry-content .wpcf7 p,
.entry-content .wpcf7 .wpcf7-form-control-wrap {
    display: block;
    width: 100%;
    max-width: 100%;
}

.entry-content .wpcf7 textarea {
    width: 100% !important;
    max-width: 100% !important;
    display: block;
    padding: 13px 16px;
    border: 2px solid #c8bde6;
    border-radius: 10px;
    font-size: 14px;
    font-family: 'Poppins', sans-serif;
    color: #2d1b42;
    background: #fff;
    outline: none;
    min-height: 160px;
    resize: vertical;
    box-sizing: border-box;
    transition: border-color .2s, box-shadow .2s;
}

.entry-content .wpcf7 textarea:focus {
    border-color: #9c27b0;
    box-shadow: 0 0 0 3px rgba(156,39,176,.1);
}

.entry-content .wpcf7 .wpcf7-submit {
    width: auto;
    min-width: 180px;
    background: linear-gradient(135deg, #9c27b0, #6a0080);
    color: #fff;
    border: none;
    padding: 14px 24px;
    border-radius: 50px;
    font-size: 15px;
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    cursor: pointer;
    transition: opacity .2s, transform .2s;
    margin-top: 6px;
    letter-spacing: .3px;
}

.entry-content .wpcf7 .wpcf7-submit:hover {
    opacity: .88;
    transform: translateY(-1px);
}

/* Genel validation & response */
.wpcf7-not-valid-tip {
    color: #e53935;
    font-size: .78rem;
    margin-top: 4px;
    display: block;
}
.wpcf7-response-output {
    margin-top: 12px;
    padding: 10px 14px;
    border-radius: 8px;
    font-size: .88rem;
    border: none !important;
    text-align: center;
}
.wpcf7-mail-sent-ok {
    background: rgba(39, 174, 96, .15);
    color: #27ae60;
}
.wpcf7-mail-sent-ng,
.wpcf7-aborted {
    background: rgba(255, 107, 107, .15);
    color: #e74c3c;
}

/* ===================================
   Page Template (page.php)
   =================================== */

/* Content Section */
.page-content-section {
  background: #f8f7fc;
  padding: 52px 0 100px;
}

.page-content-section .container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 20px;
}

.page-breadcrumb {
  font-size: 13px;
  margin-bottom: 10px;
  color: #999;
}

.page-breadcrumb a,
.page-breadcrumb span {
  color: #999;
  text-decoration: none;
}

.page-breadcrumb a:hover {
  color: #9c27b0;
}

.page-breadcrumb span.breadcrumb_last {
  color: #2d1b42;
  font-weight: 500;
}

.page-breadcrumb .breadcrumb_separator {
  color: #ccc;
  margin: 0 4px;
}

.page-hero-title {
  font-size: clamp(26px, 3.5vw, 42px);
  font-weight: 700;
  color: #2d1b42;
  line-height: 1.25;
  margin: 0 0 40px;
}

.page-article {
  background: transparent;
}

.page-featured-image {
  margin-bottom: 40px;
  border-radius: 12px;
  overflow: hidden;
}

.page-featured-image img {
  width: 100%;
  height: auto;
  display: block;
}

/* Entry Content Typography */
.entry-content h1,
.entry-content h2,
.entry-content h3,
.entry-content h4,
.entry-content h5,
.entry-content h6 {
  color: #2d1b42;
  line-height: 1.35;
  margin-top: 36px;
  margin-bottom: 14px;
  font-weight: 700;
}

.entry-content h1 { font-size: 30px; }
.entry-content h2 { font-size: 24px; }
.entry-content h3 { font-size: 20px; }
.entry-content h4 { font-size: 18px; color: #4a1070; }
.entry-content h5,
.entry-content h6 { font-size: 16px; }

.entry-content p {
  color: #555;
  font-size: 16px;
  line-height: 1.8;
  margin-bottom: 20px;
}

.entry-content a {
  color: #9c27b0;
  text-decoration: underline;
  text-underline-offset: 3px;
  transition: color .2s;
}

.entry-content a:hover {
  color: #6a0080;
}

.entry-content ul,
.entry-content ol {
  color: #555;
  font-size: 16px;
  line-height: 1.8;
  margin-bottom: 20px;
  padding-left: 24px;
}

.entry-content li {
  margin-bottom: 8px;
}

.entry-content ul li::marker {
  color: #9c27b0;
}

.entry-content blockquote {
  border-left: 4px solid #9c27b0;
  background: rgba(156,39,176,.06);
  margin: 28px 0;
  padding: 18px 24px;
  border-radius: 0 10px 10px 0;
  color: #4a1070;
  font-style: italic;
  font-size: 17px;
  line-height: 1.7;
}

.entry-content blockquote p {
  margin: 0;
  color: inherit;
}

.entry-content img {
  max-width: 100%;
  height: auto;
  border-radius: 10px;
  margin: 12px 0;
  display: block;
}

.entry-content hr {
  border: none;
  border-top: 1px solid #ede8f5;
  margin: 36px 0;
}

.entry-content table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 24px;
  font-size: 15px;
}

.entry-content th,
.entry-content td {
  padding: 12px 16px;
  text-align: left;
  border: 1px solid #e5dff0;
}

.entry-content th {
  background: #4a1070;
  color: #fff;
  font-weight: 600;
}

.entry-content tr:nth-child(even) td {
  background: #f8f7fc;
}

/* Page links (multi-page posts) */
.page-links {
  margin-top: 32px;
  font-size: 14px;
  color: #555;
}

.page-links a {
  display: inline-block;
  padding: 6px 14px;
  background: #9c27b0;
  color: #fff;
  border-radius: 6px;
  text-decoration: none;
  margin: 0 4px;
  font-size: 13px;
}

/* Responsive */
@media (max-width: 768px) {
  .page-content-section {
    padding: 32px 0 64px;
  }
.whatsapp-btn{display: none;}
  .page-content-section {
    padding: 48px 0 64px;
  }

  .entry-content h1 { font-size: 24px; }
  .entry-content h2 { font-size: 20px; }
  .entry-content h3 { font-size: 18px; }

  .related-item {
    flex-direction: column;
  }

  .related-thumb {
    width: 100% !important;
    height: 200px !important;
    flex-shrink: 0;
  }
}

/* ===================================
   Single Post (single.php)
   =================================== */

.single-cat-tag {
  display: inline-block;
  background: rgba(156, 39, 176, 0.1);
  color: #9c27b0;
  padding: 5px 14px;
  border-radius: 30px;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 14px;
}

.single-meta {
  display: flex;
  align-items: center;
  gap: 24px;
  margin-bottom: 36px;
  flex-wrap: wrap;
}

.single-date,
.single-reading-time {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  color: #888;
}

.single-date svg,
.single-reading-time svg {
  width: 15px;
  height: 15px;
  color: #9c27b0;
  flex-shrink: 0;
}

.single-thumbnail {
  float: left;
  width: 420px;
  height: 420px;
  margin: 0 36px 28px 0;
  border-radius: 16px;
  overflow: hidden;
  flex-shrink: 0;
}

.single-thumbnail img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Float temizleme */
.page-article::after {
  content: '';
  display: table;
  clear: both;
}

@media (max-width: 768px) {
  .single-thumbnail {
    float: none;
    width: 100%;
    height: 260px;
    margin: 0 0 28px 0;
  }
}

/* Related Posts */
.related-posts {
  margin-top: 64px;
  padding-top: 48px;
  border-top: 1px solid #ede8f5;
}

.related-posts-header {
  margin-bottom: 32px;
}

.related-posts-header .section-tag {
  display: inline-block;
  background: rgba(156, 39, 176, 0.10);
  color: #9c27b0;
  padding: 5px 14px;
  border-radius: 30px;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 10px;
}

.related-posts-title {
  font-size: 22px;
  font-weight: 700;
  color: #2d1b42;
}

.related-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.related-item {
  display: flex;
  gap: 24px;
  text-decoration: none;
  background: #fff;
  border: 1px solid #ede8f5;
  border-radius: 14px;
  overflow: hidden;
  transition: border-color .2s, box-shadow .2s, transform .2s;
}

.related-item:hover {
  border-color: #9c27b0;
  box-shadow: 0 6px 24px rgba(156,39,176,.1);
  transform: translateY(-2px);
}

.related-thumb {
  flex-shrink: 0;
  width: 160px;
  height: 160px;
}

.related-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.related-thumb-placeholder {
  width: 100%;
  height: 100%;
  background: #f0ebf8;
  display: flex;
  align-items: center;
  justify-content: center;
}

.related-thumb-placeholder svg {
  width: 40px;
  height: 40px;
  color: #c084e0;
}

.related-body {
  flex: 1;
  padding: 20px 24px 20px 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 6px;
}

.related-cat {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .8px;
  color: #9c27b0;
}

.related-post-title {
  font-size: 16px;
  font-weight: 700;
  color: #2d1b42;
  line-height: 1.4;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.related-item:hover .related-post-title {
  color: #9c27b0;
}

.related-excerpt {
  font-size: 13px;
  color: #777;
  line-height: 1.6;
  margin: 0;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.related-date {
  font-size: 12px;
  color: #aaa;
  margin-top: 4px;
}

/* ===================================
   Gutenberg / Block Editor Düzeltmeleri
   =================================== */

/* Columns */
.entry-content .wp-block-columns {
  display: flex !important;
  flex-wrap: wrap;
  gap: 2em;
  margin-bottom: 1.5em;
  align-items: normal;
}

.entry-content .wp-block-column {
  flex: 1 1 0;
  min-width: 0;
  word-break: break-word;
}

/* Gutenberg reset'ten etkilenen temel elementler */
.entry-content .wp-block-columns * {
  box-sizing: border-box;
}

/* Group & Cover */
.entry-content .wp-block-group {
  padding: 1.5em;
}

.entry-content .wp-block-cover {
  min-height: 280px;
}

/* Separator */
.entry-content .wp-block-separator {
  border: none;
  border-top: 2px solid #ede8f5;
  margin: 2em auto;
}

.entry-content .wp-block-separator.is-style-wide {
  width: 100%;
}

/* Buttons */
.entry-content .wp-block-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5em;
  margin-bottom: 1em;
}

.entry-content .wp-block-button__link {
  display: inline-block;
  padding: 12px 24px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  font-size: 15px;
  transition: opacity .2s;
}

.entry-content .wp-block-button__link:hover {
  opacity: .85;
}

/* Image block */
.entry-content .wp-block-image img {
  max-width: 100%;
  height: auto;
  border-radius: 10px;
}

.entry-content .wp-block-image figcaption {
  font-size: 13px;
  color: #999;
  text-align: center;
  margin-top: 6px;
}

/* Quote */
.entry-content .wp-block-quote {
  border-left: 4px solid #9c27b0;
  background: rgba(156,39,176,.06);
  margin: 28px 0;
  padding: 18px 24px;
  border-radius: 0 10px 10px 0;
}

.entry-content .wp-block-quote p {
  color: #4a1070;
  font-style: italic;
  font-size: 17px;
  line-height: 1.7;
  margin: 0;
}

.entry-content .wp-block-quote cite {
  font-size: 13px;
  color: #9c27b0;
  font-style: normal;
  margin-top: 8px;
  display: block;
}

/* Table */
.entry-content .wp-block-table table {
  width: 100%;
  border-collapse: collapse;
}

.entry-content .wp-block-table td,
.entry-content .wp-block-table th {
  padding: 12px 16px;
  border: 1px solid #e5dff0;
  text-align: left;
}

.entry-content .wp-block-table th {
  background: #4a1070;
  color: #fff;
}

/* Media & Text */
.entry-content .wp-block-media-text {
  display: grid;
  grid-template-columns: 50% 1fr;
  gap: 2em;
  align-items: center;
  margin-bottom: 1.5em;
}

.entry-content .wp-block-media-text img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Mobil - columns dikey */
@media (max-width: 768px) {
  .entry-content .wp-block-columns {
    flex-direction: column;
    gap: 1em;
  }

  .entry-content .wp-block-media-text {
    grid-template-columns: 1fr;
  }
}

/* ===================================
   Loop / Category — Post Kartları
   =================================== */

.archive-section {
  padding-top: 52px;
}

.archive-header {
  margin-bottom: 40px;
}

.archive-header .section-tag {
  display: inline-block;
  background: rgba(156,39,176,.1);
  color: #9c27b0;
  padding: 5px 14px;
  border-radius: 30px;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 10px;
}

.archive-desc {
  color: #666;
  font-size: 15px;
  margin-top: 10px;
}

/* Grid */
.lp-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-bottom: 48px;
}

/* Kart */
.lp-card {
  display: flex;
  flex-direction: column;
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 4px 24px rgba(45,27,66,.08);
  overflow: hidden;
  text-decoration: none;
  transition: transform .25s, box-shadow .25s;
}

.lp-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 36px rgba(45,27,66,.14);
}

/* Görsel */
.lp-thumb {
  position: relative;
  width: 100%;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: #f0ebf8;
}

.lp-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .4s ease;
}

.lp-card:hover .lp-thumb img {
  transform: scale(1.04);
}

.lp-thumb-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.lp-thumb-placeholder svg {
  width: 48px;
  height: 48px;
  color: #c084e0;
}

/* Kategori badge */
.lp-cat {
  position: absolute;
  bottom: 14px;
  left: 14px;
  background: rgba(20,8,32,.75);
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .6px;
  text-transform: uppercase;
  padding: 5px 12px;
  border-radius: 30px;
  backdrop-filter: blur(4px);
}

/* İçerik */
.lp-body {
  padding: 20px 22px 22px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex: 1;
}

.lp-title {
  font-size: 16px;
  font-weight: 700;
  color: #2d1b42;
  line-height: 1.4;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.lp-card:hover .lp-title {
  color: #9c27b0;
}

.lp-excerpt {
  font-size: 13px;
  color: #777;
  line-height: 1.65;
  margin: 0;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  flex: 1;
}

.lp-btn {
  display: inline-block;
  align-self: flex-start;
  background: #9c27b0;
  color: #fff;
  font-size: 13px;
  font-weight: 600;
  padding: 8px 20px;
  border-radius: 50px;
  margin-top: 4px;
  transition: background .2s;
}

.lp-card:hover .lp-btn {
  background: #6a0080;
}

.lp-empty {
  color: #888;
  font-size: 15px;
  grid-column: 1 / -1;
  text-align: center;
  padding: 40px 0;
}

/* Responsive */
@media (max-width: 1200px) {
  .lp-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 900px) {
  .lp-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .lp-grid {
    grid-template-columns: 1fr;
  }
}

/* ── Pagination ─────────────────────────────── */
.pagination {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 6px;
  padding: 40px 0 20px;
  flex-wrap: wrap;
}

.pagination .page-numbers {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 40px;
  height: 40px;
  padding: 0 14px;
  border-radius: 8px;
  font-size: .9rem;
  font-weight: 500;
  font-family: 'Poppins', sans-serif;
  color: var(--color-primary, #3a104b);
  background: #f3eef8;
  border: 1.5px solid #e4d9f0;
  text-decoration: none;
  transition: background .2s, color .2s, border-color .2s;
}

.pagination .page-numbers:hover {
  background: var(--color-primary, #3a104b);
  color: #fff;
  border-color: var(--color-primary, #3a104b);
}

.pagination .page-numbers.current {
  background: var(--color-accent, #9f2ecd);
  color: #fff;
  border-color: var(--color-accent, #9f2ecd);
  pointer-events: none;
}

.pagination .page-numbers.next,
.pagination .page-numbers.prev {
  padding: 0 18px;
  background: var(--color-primary, #3a104b);
  color: #fff;
  border-color: var(--color-primary, #3a104b);
}

.pagination .page-numbers.next:hover,
.pagination .page-numbers.prev:hover {
  background: var(--color-accent, #9f2ecd);
  border-color: var(--color-accent, #9f2ecd);
}

.pagination .page-numbers.dots {
  background: transparent;
  border-color: transparent;
  color: #999;
  pointer-events: none;
}

/* ── 404 ────────────────────────────────────── */
.not-found-section {
  min-height: 60vh;
  display: flex;
  align-items: center;
}

.not-found-wrap {
  text-align: center;
  padding: 80px 20px;
  max-width: 520px;
  margin: 0 auto;
}

.not-found-code {
  font-size: clamp(80px, 14vw, 140px);
  font-weight: 800;
  line-height: 1;
  background: linear-gradient(135deg, var(--color-primary, #3a104b), var(--color-accent, #9f2ecd));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 12px;
}

.not-found-icon {
  width: 72px;
  height: 72px;
  margin: 0 auto 24px;
  color: #c9b3e0;
}

.not-found-icon svg {
  width: 100%;
  height: 100%;
}

.not-found-title {
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--color-primary, #3a104b);
  margin-bottom: 12px;
}

.not-found-desc {
  font-size: 1rem;
  color: #7a6a8a;
  line-height: 1.6;
  margin-bottom: 32px;
}

.not-found-btn {
  display: inline-block;
  padding: 13px 32px;
  background: linear-gradient(135deg, var(--color-primary, #3a104b), var(--color-accent, #9f2ecd));
  color: #fff;
  border-radius: 8px;
  font-size: .95rem;
  font-weight: 600;
  font-family: 'Poppins', sans-serif;
  text-decoration: none;
  transition: opacity .2s;
}

.not-found-btn:hover {
  opacity: .85;
}
