﻿  * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
    }

    html, body {
      overflow-x: hidden;
      max-width: 100vw;
    }
    body {
      font-family: 'Poppins', sans-serif;
      background-color: #fff;
      min-height: 100vh;
      position: relative;
    }
    @media (max-width: 767px) {
      img { max-width: 100%; height: auto; }
      .appointment-card, .why-card { max-width: calc(100vw - 32px); margin-left: auto; margin-right: auto; }
      .ozel-img, .ozel-img-iki, .ozel-img-uc, .ozel-img-dort, .ozel-img-bes, .ozel-img-alti { max-width: calc(100vw - 32px) !important; height: auto !important; position: static !important; margin: 8px auto !important; display: block; }
    }

        ::-webkit-scrollbar {
    width: 10px;
    }

    /* Track */
    ::-webkit-scrollbar-track {
    background: #d3d3d3; 
    }
    
    /* Handle */
    ::-webkit-scrollbar-thumb {
    background: #009dfe; 
    }

    /* Handle on hover */
    ::-webkit-scrollbar-thumb:hover {
    background: #009dfe; 
    }
    
    /* Background */
    .background {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100vh;
      /* background-image: JS ile window.load sonrasÄ± yÃ¼klenir - performans iÃ§in */
      background-size: cover;
      background-position: center;
      background-repeat: no-repeat;
      z-index: -2;
    }

    .background-overlay {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100vh;
      background-color: rgb(255 255 255 / 80%);
      z-index: -1;
    }

    /* Top Bar */
    .top-bar {
      padding: 15px 0;
      font-size: 13px;
    }

    .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: #404040;
    }

    .top-bar-item svg {
      width: 14px;
      height: 14px;
      color: #009dfe;
    }

    .top-bar-item a {
      color: #404040;
      text-decoration: none;
      transition: color 0.3s;
    }

    .top-bar-item a:hover {
      color: #009dfe;
    }

    .social-links {
      display: flex;
      gap: 5px;
    }

    .social-link {
      width: 36px;
      height: 36px;
      border: 1px solid rgba(51, 51, 51, 0.2);
      border-radius: 50%;
      display: flex;
    
      align-items: center;
      justify-content: center;
      color: white;
      text-decoration: none;
      transition: all 0.3s;
    }

 

    .social-link svg {
      width: 16px;
      height: 16px;
      fill: #009dfe;
    }

    /* Header */
    .header {
      background: transparent;
      backdrop-filter: blur(12px);
      -webkit-backdrop-filter: blur(12px);
      position: sticky;
      top: 0;
      border-top: 1px solid #e6e6e6;
      z-index: 100;
    }

    .header::before {
      content: '';
      position: absolute;
      inset: 0;
      z-index: 0;
      background: rgb(255 255 255 / 69%);
      border-bottom: 1px solid rgba(255, 255, 255, 0.1);
      transform-origin: left center;
      transform: scaleX(0);
      animation: header-bg-wipe 1.4s cubic-bezier(0.22, 1, 0.36, 1) 0.05s forwards;
    }

    @keyframes header-bg-wipe {
      to { transform: scaleX(1); }
    }

    .header .container {
      max-width: 1400px;
      margin: 0 auto;
      padding: 15px 20px;
      width: 100%;
      display: flex;
      justify-content: space-between;
      align-items: center;
      position: relative;
      z-index: 1;
    }

    .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: #009dfe;
    }

    .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 .active{
      color: #009dfe  !important;
    }

    .main-menu > li {
      position: relative;
    }

    .main-menu > li > a {
      color: #404040;
      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: #009dfe;
    }

    .main-menu > li > a svg {
      width: 16px;
      height: 16px;
      transition: transform 0.3s;
    }

    .main-menu > li:hover > a svg {
      transform: rotate(180deg);
    }

    /* ===== Mega Menü (masaüstü) ===== */
    .has-mega { position: relative; }

    .mega {
      position: absolute;
      left: 0;
      top: calc(100% + 6px);
      transform: translateY(12px);
      z-index: 200;
      opacity: 0;
      visibility: hidden;
      pointer-events: none;
      transition: opacity 0.28s ease, transform 0.28s ease, visibility 0s linear 0.28s;
    }

    .has-mega:hover > .mega,
    .has-mega:focus-within > .mega {
      opacity: 1;
      visibility: visible;
      pointer-events: auto;
      transform: translateY(0);
      transition: opacity 0.28s ease, transform 0.28s ease, visibility 0s;
    }

    /* Trigger ile panel arasındaki boşluğu köprüle (hover kopmasın) */
    .mega::before {
      content: "";
      position: absolute;
      left: 0; right: 0;
      top: -14px;
      height: 14px;
    }

    .mega-inner {
      background: #ffffff;
      border: 1px solid #e6eef5;
      border-radius: 16px;
      box-shadow: 0 24px 60px rgba(16, 49, 75, 0.18);
      padding: 26px;
      display: flex;
      gap: 34px;
    }

    /* Products: 2 sütun */
    .mega-products .mega-inner { width: 620px; }
    .mega-col { flex: 1; min-width: 0; }

    /* .nav-desktop a{color:white} kuralını yenmek için tüm mega metin
       renkleri .nav-desktop ile öncelendi (aksi halde beyaz kalır). */
    .nav-desktop .mega-head {
      display: block;
      font-size: 12px;
      font-weight: 700;
      letter-spacing: 1.2px;
      text-transform: uppercase;
      color: #0078d4;
      padding: 0 12px 12px;
      margin-bottom: 8px;
      border-bottom: 1px solid #eef2f6;
      text-decoration: none;
    }
    .nav-desktop .mega-head:hover { color: #005fa8; }

    .mega-col ul {
      list-style: none;
      margin: 0 0 4px;
      padding: 0;
    }

    .nav-desktop .mega-col ul li a {
      display: block;
      padding: 9px 12px;
      border-radius: 9px;
      color: #33404d;
      text-decoration: none;
      font-size: 14px;
      line-height: 1.35;
      transition: background 0.2s, color 0.2s, transform 0.2s;
    }
    .nav-desktop .mega-col ul li a strong { color: #10314b; font-weight: 700; }

    .nav-desktop .mega-col ul li a:hover {
      background: #f2f8fd;
      color: #0078d4;
      transform: translateX(3px);
    }
    .nav-desktop .mega-col ul li a:hover strong { color: #0078d4; }

    .nav-desktop .mega-subhead {
      display: block;
      font-size: 12.5px;
      font-weight: 600;
      color: #64727f;
      padding: 12px 12px 4px;
      text-decoration: none;
    }
    .nav-desktop .mega-subhead:hover { color: #0078d4; }
    .mega-col > .mega-subhead:first-of-type { padding-top: 4px; }

    /* Industries: ikon ızgarası — Products gibi sola yaslı (trigger'ın altından sağa açılır) */
    .mega-industries { left: 0; right: auto; }

    .mega-industries-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 8px;
      width: 560px;
      padding: 22px;
    }

    .nav-desktop .mega-industry {
      display: flex;
      align-items: center;
      gap: 12px;
      padding: 12px 14px;
      border-radius: 12px;
      text-decoration: none;
      color: #33404d;
      font-size: 14px;
      font-weight: 600;
      transition: background 0.2s, transform 0.2s;
    }
    .nav-desktop .mega-industry svg { width: 32px; height: 32px; flex-shrink: 0; }
    .nav-desktop .mega-industry:hover {
      background: #f2f8fd;
      color: #0078d4;
      transform: translateY(-2px);
    }

    /* Trigger chevron */
    .nav-chevron { width: 15px; height: 15px; transition: transform 0.3s; }
    .has-mega:hover > .mega-trigger .nav-chevron { transform: rotate(180deg); }
    .main-menu > li > a.mega-trigger { cursor: pointer; }

    /* Bulunulan bölüm vurgusu */
    .main-menu > li.is-active > a {
      color: #009dfe;
    }
    .main-menu > li.is-active > a::after {
      content: "";
      position: absolute;
      left: 0;
      right: 0;
      bottom: 2px;
      height: 2px;
      border-radius: 2px;
      background: #009dfe;
    }
    .main-menu > li.is-active > a { position: relative; }

    .header-right {
      display: flex;
      align-items: center;
      gap: 15px;
    }

    .whatsapp-btn {
      width: 44px;
      height: 44px;
      background-color: #009dfe;
      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: #404040 !important;
    }

    .phone-info span {
      color: #009dfe;
      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: #404040;
      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: #404040;
      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: rgb(64 64 64);
      backdrop-filter: blur(10px);
      -webkit-backdrop-filter: blur(10px);
    }

    .nav-mobile.active {
      max-height: calc(100vh - 70px);
      overflow-y: auto;
      -webkit-overflow-scrolling: touch;
      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: #009dfe;
      padding-left: 10px;
    }

    .nav-mobile > ul > li.is-active > a {
      color: #009dfe;
    }

    .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: #009dfe;
    }

    .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: transparent;
      border-radius: 8px;
      margin: 0;
      padding: 0;
    }

    .nav-mobile .sub-menu.active {
      max-height: 900px;
      padding: 6px 0 10px;
      margin: 8px 0;
    }

    /* Mobil grup etiketi (Bending Machines / Pipe Processing) */
    .nav-mobile .sub-menu li.m-group {
      padding: 12px 20px 6px;
      font-size: 11px;
      font-weight: 700;
      letter-spacing: 1.1px;
      text-transform: uppercase;
      color: #009dfe;
    }
    .nav-mobile .sub-menu li.m-group:first-child { padding-top: 4px; }

    .nav-mobile .sub-menu li a {
      display: block;
      padding: 11px 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: #009dfe;
      background: rgba(156, 39, 176, 0.1);
      border-left-color: #009dfe;
      padding-left: 25px;
      background: transparent;
    }

  
  
  
  /* ========================
     Hero Animations
     ======================== */
    @keyframes heroFadeUp {
      from {
        opacity: 0;
        transform: translateY(36px);
      }
      to {
        opacity: 1;
        transform: translateY(0);
      }
    }

    @keyframes heroFadeIn {
      from { opacity: 0; }
      to   { opacity: 1; }
    }

    @keyframes heroSlideRight {
      from {
        opacity: 0;
        transform: translateX(60px) scale(0.94);
      }
      to {
        opacity: 1;
        transform: translateX(0) scale(1);
      }
    }

    /* YazÄ±lar â€” yukarÄ±dan aÅŸaÄŸÄ±ya stagger */
    .hero-content h1 {
      animation: heroFadeUp 0.75s cubic-bezier(0.22, 1, 0.36, 1) 0.05s both;
    }   .hero-content span{
        color: #009dfe;
      }


    .hero-content p {
      animation: heroFadeUp 0.75s cubic-bezier(0.22, 1, 0.36, 1) 0.22s both;
    }

    /* Butonlar */
    .hero-content .detail-btn:first-of-type {
      animation: heroFadeUp 0.65s cubic-bezier(0.22, 1, 0.36, 1) 0.40s both;
    }

    .hero-content .detail-btn:last-of-type {
      animation: heroFadeUp 0.65s cubic-bezier(0.22, 1, 0.36, 1) 0.54s both;
    }

    /* Makine gÃ¶rseli â€” saÄŸdan kayarak gelir */
    .appointment-card {
      animation: heroSlideRight 0.95s cubic-bezier(0.22, 1, 0.36, 1) 0.15s both;
    }

  /* Hero Section. Section 1 */
    .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% 51%;
    }

    .hero-content {
      max-width: 600px;
    }

    .hero-content h1 {
      font-size: 42px;
      font-weight: 700;
      color: #333333;
      margin-bottom: 20px;
      line-height: 1.2;
    }

    .hero-content p {
      font-size: 16px;
      color: #333333;
      margin-bottom: 8px;
      line-height: 1.6;
    }

    .detail-btn {
     display: inline-flex;
    align-items: center;
    gap: 0;
    background-color: #009dfe;
    color: #fff;
    border: 1px solid #009dfe;
    padding: 16px 35px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 500;
    margin-right: 15px;
    font-size: 15px;
    margin-top: 25px;
    transition: all 0.3s;
    }
    .liner{
          background: transparent !important;
    border: 1px solid #333333 !important;
    color: #333333 !important;
    }

    .detail-btn:hover {
      transform: translateX(5px);
    }

    .detail-btn .arrow {
      width: 40px;
      height: 40px;
      background-color: #009dfe;
      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 {
      border-radius: 20px;
      padding: 40px 10px;
      width: 100%;
      text-align: center;
      max-width: 100%;
    }
    .appointment-card img{
      width: 100%;
    }

    .appointment-icon {
      width: 60px;
      height: 60px;
      margin: 0 auto 20px;
    }

    .appointment-card h2 {
      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: 65px;
      }

      .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;
      }
    }

    /* ========================
       Section 2 - Products Grid
       ======================== */
    .products-section {
      padding: 60px 0;
      margin-top: 40px;
    }

    .products-section .container {
      max-width: 1400px;
      margin: 0 auto;
      padding: 0 20px;
      display: flex;
      flex-direction: column;
      gap: 20px;
    }

    .products-row {
      display: grid;
      grid-template-columns: 1fr 1fr 1fr;
      gap: 20px;
    }

    .products-row-2 {
      grid-template-columns: 2fr 1fr 1fr;
    }

    .product-card {
      border-radius: 20px;
      padding: 28px 30px;
      background-color: #EBEBEB;
      display: flex;
      align-items: center;
      justify-content: space-between;
      overflow: hidden;
      min-height: 230px;
      position: relative;
    }

    .card-dark    { background-color: #222222; }
    .card-yellow  { background-color: #009dfe; }
    .card-red     { background-color: #EBEBEB; }
    .card-light   { background-color: #EBEBEB; }
    .card-green   { background-color: #222222; }
    .card-blue-bg { background-color: #009dfe; }

    .card-info {
      display: flex;
      flex-direction: column;
      align-items: flex-start;
      flex-shrink: 0;
      z-index: 1;
    }

    .card-series {
      font-size: 11px;
      font-weight: 400;
      color: #222;
      letter-spacing: 0.4px;
      margin-bottom: 2px;
    }

    .card-subtitle {
      font-size: 15px;
      font-weight: 600;
       color: #222;
      margin: 0 0 2px 0;
    }

    .card-name {
      font-size: 46px;
      font-weight: 800;
        color: #222;
      line-height: 1;
      letter-spacing: -1px;
      margin: 4px 0 18px 0;
    }

    
    .card-btn {
      display: inline-block;
      padding: 10px 28px;
      border-radius: 50px;
      text-decoration: none;
      font-size: 14px;
      font-weight: 500;
      transition: all 0.3s;
          background-color: #009dfe;
      color: #fff;
      white-space: nowrap;
    }

  

    .card-btn-solid:hover {
      background-color: #0085d8;
      transform: translateY(-2px);
    }

    .card-btn-outline {
      background-color: #fff;
      color: #333;
    }

    .card-btn-outline:hover {
      background-color: rgba(255, 255, 255, 0.85);
      transform: translateY(-2px);
    }

    .card-img-wrap {
      flex-shrink: 0;
      max-width: 52%;
      display: flex;
      align-items: flex-end;
      justify-content: flex-end;
      align-self: flex-end;
    }

    .card-img-wrap img {
      opacity: 0.8;
      object-fit: contain;
      display: block;
    }
     .product-card:hover img{
      opacity: 1;
     }

     .yalin-img-wrap img{
       opacity: 0.8;
     }

    .ozel-img{
      position: absolute;
    width: 300px;
    top: 5px;
    right: -30px;
    }

    .ozel-img-iki{
      position: absolute;
    width: 300px;
       right: -52px;
    top: 30px;
    }
    .ozel-img-uc{
      position: absolute;
   width: 340px;
    top: -10px;
    right: -30px;
    }       
   .ozel-img-dort{
      position: absolute;
     width: 300px;
    top: 6px;
    right: 20px;
    }       

      .ozel-img-bes{
  position: absolute;
    width: 304px;
    top: -33px;
    right: -32px;
    }     
    
        .ozel-img-alti{
  position: absolute;
    width: 304px;
    top: 38px;
    right: -73px;
    }       




    /* ========================
       Card Scroll Animations
       ======================== */
    .product-card {
      opacity: 0;
      transform: translateY(48px) scale(0.97);
      transition:
        opacity 0.65s cubic-bezier(0.22, 1, 0.36, 1),
        transform 0.65s cubic-bezier(0.22, 1, 0.36, 1),
        box-shadow 0.3s ease;
      transition-delay: var(--card-delay, 0ms);
    }

    .product-card.is-visible {
      opacity: 1;
      transform: translateY(0) scale(1);
    }

    .product-card.is-visible:hover {
      box-shadow: 0 1px 10px rgba(0, 0, 0, 0.18);
      transform: translateY(-4px) scale(1.01);
    }

    /* YALIN - Full Width Banner Card */
    .products-row-3 {
      grid-template-columns: 1fr;
    }

    .yalin-card {
      min-height: 210px;
      padding: 28px 40px;
      gap: 20px;
      align-items: center;
    }

    .yalin-left {
      display: flex;
      flex-direction: column;
      flex-shrink: 0;
    }

    .yalin-tube {
      font-size: 88px;
      font-weight: 900;
      color: #222;
      line-height: 1;
      letter-spacing: -2px;
    }

    .yalin-deburring {
      font-size: 88px;
      font-weight: 900;
      color: #222;
      line-height: 1;
      letter-spacing: -2px;
    }

    .yalin-machine-label {
      font-size: 12px;
      font-weight: 500;
      color: #222;
      letter-spacing: 2px;
      margin-top: 6px;
      text-transform: uppercase;
    }

    .yalin-img-wrap {
      flex: 1;
      display: flex;
      align-items: flex-end;
      justify-content: center;
      align-self: flex-end;
    }

    .yalin-img-wrap img {
     width: 625px !important;
    position: absolute;
    top: -60px;
      object-fit: contain;
      display: block;
    }

    .yalin-right {
      display: flex;
      flex-direction: column;
      align-items: flex-start;
      gap: 10px;
      flex-shrink: 0;
      min-width: 180px;
    }

    .yalin-name {
      font-size: 36px;
      font-weight: 800;
      color: #222;
      line-height: 1;
      margin: 0;
    }

    .yalin-desc {
      font-size: 14px;
      color: #222;
      line-height: 1.6;
      margin: 0;
    }
.only-mob{display: none;}
    @media (max-width: 1024px) {
      .products-row,
      .products-row-2 {
        grid-template-columns: 1fr 1fr;
      }

      .yalin-tube,
      .yalin-deburring {
        font-size: 64px;
      }
    }

    @media (max-width: 640px) {
      .products-row,
      .products-row-2 {
        grid-template-columns: 1fr;
      }
.whatsapp-btn{display: none;}
      .card-img-wrap img{
        opacity: 0.3;
      }
      .yalin-right{
        display: none;
      }
      .card-name {
        font-size: 36px;
      }

      .yalin-card {
        flex-wrap: wrap;
        padding: 24px 20px;
      }

      .yalin-tube,
      .yalin-deburring {
        font-size: 48px;
      }

      .yalin-img-wrap img {
    width: 325px !important;
    position: absolute;
    top: 10px;
    right: -50px;
    object-fit: contain;
    display: block;
    z-index: -1;
    opacity: 0.3;
}
.only-mob{
  display: block;
  width: fit-content;
    margin-top: 15px;
}
    }

    /* ========================
       Section 3 - Industry 4.0
       ======================== */
    .industry-section {
      padding: 80px 0;
      background-color: #ffffff;
    }

    .industry-section .container {
      max-width: 1400px;
      margin: 0 auto;
      padding: 0 20px;
    }

    .industry-header {
      text-align: center;
      margin-bottom: 56px;
    }

    .industry-header h2 {
      font-size: 40px;
      font-weight: 700;
      color: #333333;
      line-height: 1.2;
    }

    .text-blue {
      color: #009dfe;
    }

    .industry-divider-line {
      width: 50px;
      height: 3px;
      background-color: #222222;
      margin: 20px auto;
      border-radius: 2px;
    }

    .industry-subtitle {
      font-size: 17px;
      color: #404040;
      font-style: italic;
    }

    /* Grid */
    .industry-grid {
      display: grid;
      grid-template-columns: 1fr 1fr 1fr;
      gap: 24px;
    }

    /* Card */
    .industry-card {
      background-color: #009dfe;
      border-radius: 20px;
      padding: 40px 30px;
      text-align: center;
      opacity: 0;
      transform: translateY(48px) scale(0.97);
      transition:
        opacity 0.65s cubic-bezier(0.22, 1, 0.36, 1),
        transform 0.65s cubic-bezier(0.22, 1, 0.36, 1),
        box-shadow 0.3s ease;
      transition-delay: var(--card-delay, 0ms);
    }

    .industry-card.is-visible {
      opacity: 1;
      transform: translateY(0) scale(1);
    }

    .industry-card.is-visible:hover {
      box-shadow: 0 8px 32px rgba(0, 0, 0, 0.28);
      transform: translateY(-4px) scale(1.01);
    }

    /* Icon */
    .industry-icon-wrap {
      width: 72px;
      height: 72px;
      background: rgba(255, 255, 255, 0.2);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      margin: 0 auto 24px;
    }

    .industry-icon-wrap svg {
      width: 34px;
      height: 34px;
      color: #ffffff;
    }

    .industry-card-title {
      font-size: 20px;
      font-weight: 700;
      color: #ffffff;
      margin-bottom: 14px;
    }

    .industry-card-divider {
      width: 30px;
      height: 2px;
      background-color: rgba(255, 255, 255, 0.5);
      margin: 0 auto 16px;
      border-radius: 2px;
    }

    .industry-card-desc {
      font-size: 14px;
      color: rgba(255, 255, 255, 0.8);
      line-height: 1.75;
    }

    @media (max-width: 768px) {
      .industry-grid {
        grid-template-columns: 1fr;
      }

      .industry-header h2 {
        font-size: 28px;
      }
    }

    /* ========================
       Section 4 - Why Choose Us
       ======================== */
    .why-section {
      padding: 90px 0;
      margin-top: 90px;
      margin-bottom: 60px;
      background-color: #222222;
    }

    .why-section .container {
      max-width: 1400px;
      margin: 0 auto;
      padding: 0 20px;
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 70px;
      align-items: center;
    }

    /* Left */
    .why-label {
      display: inline-block;
      font-size: 12px;
      font-weight: 600;
      letter-spacing: 2.5px;
      text-transform: uppercase;
      color: #0078d4;
      margin-bottom: 20px;
    }

    .why-title {
      font-size: 44px;
      font-weight: 800;
      color: #ffffff;
      line-height: 1.15;
      letter-spacing: -1px;
      margin-bottom: 24px;
    }

    .why-accent-line {
      width: 48px;
      height: 4px;
      background-color: #009dfe;
      border-radius: 2px;
      margin-bottom: 24px;
    }

    .why-desc {
      font-size: 15px;
      color: rgba(255, 255, 255, 0.6);
      line-height: 1.8;
      margin-bottom: 36px;
    }

    .why-cta {
      margin-top: 0 !important;
    }

    /* Right â€” cards stacked */
    .why-right {
      display: flex;
      flex-direction: column;
      gap: 16px;
    }

    .why-card {
      background: rgba(255, 255, 255, 0.05);
      border: 1px solid rgba(255, 255, 255, 0.08);
      border-radius: 16px;
      padding: 26px 28px;
      display: flex;
      align-items: flex-start;
      gap: 20px;
      opacity: 0;
      transform: translateX(40px);
      transition:
        opacity 0.6s cubic-bezier(0.22, 1, 0.36, 1),
        transform 0.6s cubic-bezier(0.22, 1, 0.36, 1),
        background 0.3s ease,
        border-color 0.3s ease;
      transition-delay: var(--card-delay, 0ms);
    }

    .why-card.is-visible {
      opacity: 1;
      transform: translateX(0);
    }

    .why-card.is-visible:hover {
      background: rgba(0, 157, 254, 0.1);
      border-color: rgba(0, 157, 254, 0.35);
    }

    .why-icon-wrap {
      width: 52px;
      height: 52px;
      background-color: #009dfe;
      border-radius: 14px;
      display: flex;
      align-items: center;
      justify-content: center;
      flex-shrink: 0;
    }

    .why-icon-wrap svg {
      width: 26px;
      height: 26px;
      color: #ffffff;
    }

    .why-card-body {
      display: flex;
      flex-direction: column;
      gap: 6px;
    }

    .why-card-title {
      font-size: 17px;
      font-weight: 700;
      color: #ffffff;
    }

    .why-card-desc {
      font-size: 14px;
      color: rgba(255, 255, 255, 0.55);
      line-height: 1.7;
    }

    @media (max-width: 1024px) {
      .why-section .container {
        grid-template-columns: 1fr;
        gap: 48px;
      }

      .why-title {
        font-size: 36px;
      }
    }

    /* ========================
       Section 5 - Experience Since 1991
       ======================== */
    .exp-section {
      padding: 90px 0;
      background-color: #ffffff;
    }

    .exp-section .container {
      max-width: 1400px;
      margin: 0 auto;
      padding: 0 20px;
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 70px;
      align-items: center;
    }

    /* Left */
    .exp-label {
      display: inline-block;
      font-size: 12px;
      font-weight: 600;
      letter-spacing: 2.5px;
      text-transform: uppercase;
      color: #0078d4;
      margin-bottom: 16px;
    }

    .exp-title {
      font-size: 44px;
      font-weight: 800;
      color: #222222;
      line-height: 1.15;
      letter-spacing: -1px;
      margin-bottom: 20px;
    }

    .exp-accent-line {
      width: 48px;
      height: 4px;
      background-color: #009dfe;
      border-radius: 2px;
      margin-bottom: 22px;
    }

    .exp-desc {
      font-size: 15px;
      color: #404040;
      line-height: 1.8;
      margin-bottom: 28px;
    }

    .exp-list {
      list-style: none;
      padding: 0;
      margin: 0 0 28px 0;
      display: flex;
      flex-direction: column;
      gap: 12px;
    }

    .exp-list li {
      display: flex;
      align-items: flex-start;
      gap: 10px;
      font-size: 14px;
      color: #333333;
      line-height: 1.6;
    }

    .exp-list li svg {
      width: 18px;
      height: 18px;
      color: #009dfe;
      flex-shrink: 0;
      margin-top: 2px;
    }

    .exp-closing {
      font-size: 14px;
      color: #404040;
      line-height: 1.7;
      padding-top: 20px;
      border-top: 1px solid #EBEBEB;
    }

    .exp-closing strong {
      color: #009dfe;
    }

    /* Right â€” image */
    .exp-right {
      position: relative;
    }

    .exp-img-wrap {
      position: relative;
      border-radius: 20px;
      overflow: hidden;
    }

    .exp-img-wrap img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      display: block;
      border-radius: 20px;
    }

    .exp-badge {
      position: absolute;
      bottom: 24px;
      left: 24px;
      background: #009dfe;
      border-radius: 16px;
      padding: 16px 22px;
      display: flex;
      align-items: center;
      gap: 12px;
    }

    .exp-badge-year {
      font-size: 40px;
      font-weight: 800;
      color: #ffffff;
      line-height: 1;
    }

    .exp-badge-year sup {
      font-size: 18px;
      font-weight: 700;
    }

    .exp-badge-text {
      font-size: 13px;
      font-weight: 600;
      color: rgba(255, 255, 255, 0.9);
      line-height: 1.4;
    }

    @media (max-width: 1024px) {
      .exp-section .container {
        grid-template-columns: 1fr;
        gap: 48px;
      }

      .exp-title {
        font-size: 36px;
      }
    }

    /* ========================
       Section 6 - Bending Tool Systems
       ======================== */
    .tool-section {
      padding: 90px 0;
      background-color: #ffffff;
    }

    .tool-section .container {
      max-width: 1400px;
      margin: 0 auto;
      padding: 0 20px;
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 70px;
      align-items: center;
    }

    /* Left â€” image */
    .tool-left {
      position: relative;
    }

    .tool-img-wrap {
      position: relative;
      border-radius: 20px;
      overflow: hidden;
    }

    .tool-img-wrap img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      display: block;
      border-radius: 20px;
    }

    /* Right â€” text */
    .tool-label {
      display: inline-block;
      font-size: 12px;
      font-weight: 600;
      letter-spacing: 2.5px;
      text-transform: uppercase;
      color: #0078d4;
      margin-bottom: 16px;
    }

    .tool-title {
      font-size: 44px;
      font-weight: 800;
      color: #222222;
      line-height: 1.15;
      letter-spacing: -1px;
      margin-bottom: 20px;
    }

    .tool-accent-line {
      width: 48px;
      height: 4px;
      background-color: #009dfe;
      border-radius: 2px;
      margin-bottom: 22px;
    }

    .tool-desc {
      font-size: 15px;
      color: #404040;
      line-height: 1.8;
      margin-bottom: 28px;
    }

    .tool-list {
      list-style: none;
      padding: 0;
      margin: 0;
      display: flex;
      flex-direction: column;
      gap: 12px;
    }

    .tool-list li {
      display: flex;
      align-items: center;
      gap: 10px;
      font-size: 14px;
      font-weight: 500;
      color: #333333;
    }

    .tool-list li svg {
      width: 18px;
      height: 18px;
      color: #009dfe;
      flex-shrink: 0;
    }

    @media (max-width: 1024px) {
      .tool-section .container {
        grid-template-columns: 1fr;
        gap: 48px;
      }

      .tool-title {
        font-size: 36px;
      }
    }

    /* ========================
       Section 7 - Mobile App
       ======================== */
    .app-section {
      padding: 90px 0;
      background-color: #ffffff;
    }

    .app-section .container {
      max-width: 1400px;
      margin: 0 auto;
      padding: 0 20px;
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 70px;
      align-items: center;
    }

    /* Left */
    .app-label {
      display: inline-block;
      font-size: 12px;
      font-weight: 600;
      letter-spacing: 2.5px;
      text-transform: uppercase;
      color: #0078d4;
      margin-bottom: 16px;
    }

    .app-title {
      font-size: 44px;
      font-weight: 800;
      color: #222222;
      line-height: 1.15;
      letter-spacing: -1px;
      margin-bottom: 20px;
    }

    .app-accent-line {
      width: 48px;
      height: 4px;
      background-color: #009dfe;
      border-radius: 2px;
      margin-bottom: 22px;
    }

    .app-desc {
      font-size: 15px;
      color: #404040;
      line-height: 1.8;
      margin-bottom: 36px;
    }

    .app-store-btn {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      background-color: #009dfe;
      color: #ffffff;
      border: 1px solid #009dfe;
      padding: 14px 32px;
      border-radius: 50px;
      text-decoration: none;
      font-weight: 600;
      font-size: 14px;
      letter-spacing: 0.5px;
      transition: all 0.3s;
    }

    .app-store-btn svg {
      width: 18px;
      height: 18px;
      flex-shrink: 0;
    }

    .app-store-btn:hover {
      background-color: #0085d8;
      border-color: #0085d8;
      transform: translateY(-2px);
      box-shadow: 0 8px 24px rgba(0, 157, 254, 0.35);
    }

    /* Right â€” phone mockup */
    .app-right {
      display: flex;
      justify-content: center;
      align-items: center;
    }

    .app-phone-wrap {
      position: relative;
      width: 100%;
      max-width: 380px;
      margin: 0 auto;
    }

    .app-phone-wrap img {
      width: 100%;
      height: auto;
      display: block;
      border-radius: 20px;
      filter: drop-shadow(0 20px 50px rgba(0, 0, 0, 0.18));
    }

    @media (max-width: 1024px) {
      .app-section .container {
        grid-template-columns: 1fr;
        gap: 48px;
      }

      .app-title {
        font-size: 36px;
      }

      .app-phone-wrap {
        max-width: 280px;
      }
    }

    @media (max-width: 767px) {
      .top-bar-left {
        display: none;
      }

      .social-links {
        width: 100%;
        justify-content: center;
      }

          .hero .container {
  
      gap: 15px;
      display: grid;
    grid-template-columns: 100%;
    }

.products-section{
  margin-top: 0px;
  padding-top: 20px;
}
.industry-section{
  padding: 40px 0px;
}

.why-section{margin: 60px 0px;}
.exp-section, .app-section{
  padding: 45px 0;
}
      .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%;
      }
    }

/* ========================
   Ürün Teknik Özellik Tabloları
   ======================== */
.product-tab-content table,
.product-entry-content table,
.page-entry-content table {
  width: 100%;
  border-collapse: collapse;
  margin: 24px 0;
  font-size: 14px;
  background-color: #ffffff;
}

/* Geniş spec tabloları mobilde sayfayı taşırmasın, kendi içinde kaysın */
.product-tab-content .table-scroll,
.product-entry-content .table-scroll,
.page-entry-content .table-scroll {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  margin: 24px 0;
  border-radius: 12px;
  border: 1px solid #e6eef5;
}

.table-scroll table {
  margin: 0;
  border: 0;
  min-width: 640px;
}

.product-tab-content th,
.product-entry-content th,
.page-entry-content th {
  background-color: #f2f8fd;
  color: #10314b;
  font-weight: 700;
  text-align: left;
  padding: 12px 14px;
  border-bottom: 2px solid #009dfe;
  white-space: nowrap;
}

.product-tab-content td,
.product-entry-content td,
.page-entry-content td {
  padding: 11px 14px;
  border-bottom: 1px solid #eef2f6;
  color: #404040;
  vertical-align: top;
}

/* İlk sütun = özellik adı */
.product-tab-content tbody th:first-child,
.product-tab-content tbody td:first-child,
.product-entry-content tbody td:first-child,
.page-entry-content tbody td:first-child {
  font-weight: 600;
  color: #222222;
  background-color: #fafcfe;
  white-space: nowrap;
}

.product-tab-content tbody tr:hover td,
.product-entry-content tbody tr:hover td,
.page-entry-content tbody tr:hover td {
  background-color: #f7fbfe;
}

.product-tab-content tbody tr:last-child td,
.product-entry-content tbody tr:last-child td,
.page-entry-content tbody tr:last-child td {
  border-bottom: 0;
}

@media (max-width: 767px) {
  .product-tab-content table,
  .product-entry-content table,
  .page-entry-content table {
    font-size: 13px;
  }

  .product-tab-content th,
  .product-tab-content td,
  .product-entry-content th,
  .product-entry-content td,
  .page-entry-content th,
  .page-entry-content td {
    padding: 9px 11px;
  }
}

/* Ürün sekmelerindeki arayüz görselleri */
.product-tab-content figure,
.product-entry-content figure {
  margin: 26px 0;
  padding: 12px;
  background: linear-gradient(160deg, #ffffff 0%, #f2f8fd 100%);
  border: 1px solid #e2edf6;
  border-radius: 14px;
  max-width: 560px;
}

.product-tab-content figure img,
.product-entry-content figure img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 8px;
}

.product-tab-content figcaption,
.product-entry-content figcaption {
  margin-top: 10px;
  font-size: 13px;
  line-height: 1.6;
  color: #64727f;
  text-align: center;
}

.product-tab-content h3,
.product-tab-content h4 {
  margin-top: 28px;
}

.product-tab-content h3:first-child {
  margin-top: 0;
}

/* ========================
   Blog Yazısı (tek sütun makale)
   ======================== */
.single-article-layout {
  max-width: 820px;
  margin: 0 auto;
}

.single-article-hero {
  border-radius: 18px;
  overflow: hidden;
  margin-bottom: 38px;
  box-shadow: 0 18px 44px rgba(16, 49, 75, 0.14);
}

.single-article-hero img {
  width: 100%;
  height: auto;
  display: block;
}

.single-article .page-entry-content {
  font-size: 17px;
  line-height: 1.8;
  color: #2f3a45;
}

.single-article .page-entry-content h2 {
  font-size: 27px;
  margin: 42px 0 14px;
  color: #10314b;
}

.single-article .page-entry-content h3 {
  font-size: 20px;
  margin: 30px 0 10px;
  color: #1c2b3a;
}

.single-article .page-entry-content p { margin: 0 0 18px; }

.single-article .page-entry-content ul {
  margin: 0 0 22px;
  padding-left: 22px;
}

.single-article .page-entry-content li {
  margin-bottom: 9px;
  line-height: 1.7;
}

.single-article .page-entry-content a {
  color: #0078d4;
  text-decoration: underline;
  text-underline-offset: 2px;
  text-decoration-color: rgba(0, 120, 212, 0.35);
  transition: text-decoration-color 0.2s;
}
.single-article .page-entry-content a:hover {
  text-decoration-color: #0078d4;
}

@media (max-width: 767px) {
  .single-article-hero { border-radius: 12px; margin-bottom: 26px; }
  .single-article .page-entry-content { font-size: 16px; }
  .single-article .page-entry-content h2 { font-size: 23px; }
}

/* ========================
   Sektör Sayfaları
   ======================== */
.sector-intro {
  display: flex;
  align-items: flex-start;
  gap: 26px;
  margin-bottom: 8px;
}

/* wpautop'un shortcode etrafına eklediği boş paragrafları gizle */
.page-entry-content p:empty {
  display: none;
}

.sector-icon {
  flex-shrink: 0;
  width: 92px;
  height: 92px;
  padding: 14px;
  background: linear-gradient(160deg, #ffffff 0%, #eef6fc 100%);
  border: 1px solid #e0ecf6;
  border-radius: 18px;
  box-shadow: 0 8px 22px rgba(0, 90, 160, 0.10);
}

.sector-icon svg {
  width: 100%;
  height: 100%;
  display: block;
}

.sector-intro > p {
  margin: 0;
  font-size: 17px;
  line-height: 1.75;
  color: #33404d;
}

/* Önerilen makineler kart ızgarası */
.sector-machines {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  margin: 24px 0 8px;
}

.sector-machine-card {
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding: 20px 22px;
  background-color: #ffffff;
  border: 1px solid #e6eef5;
  border-radius: 14px;
  text-decoration: none;
  transition: transform 0.25s, box-shadow 0.25s, border-color 0.25s;
}

.sector-machine-card:hover {
  transform: translateY(-3px);
  border-color: #cfe6f8;
  box-shadow: 0 14px 32px rgba(0, 120, 212, 0.12);
}

.sector-machine-name {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 16px;
  font-weight: 700;
  color: #0078d4;
}

.sector-machine-name::after {
  content: "→";
  font-size: 15px;
  color: #9fb4c6;
  transition: transform 0.25s, color 0.25s;
}

.sector-machine-card:hover .sector-machine-name::after {
  transform: translateX(4px);
  color: #0078d4;
}

.sector-machine-reason {
  font-size: 14px;
  line-height: 1.65;
  color: #55636f;
}

@media (max-width: 767px) {
  .sector-intro {
    flex-direction: column;
    gap: 16px;
  }
  .sector-icon {
    width: 72px;
    height: 72px;
  }
  .sector-machines {
    grid-template-columns: 1fr;
  }
}

/* ========================
   Top Bar - Dil Değiştirici
   ======================== */
.top-bar .social-links {
  margin-left: auto;
}

.top-bar-lang {
  display: flex;
  align-items: center;
  gap: 4px;
  margin-left: 14px;
  padding-left: 14px;
  border-left: 1px solid rgba(51, 51, 51, 0.2);
}

.top-bar-lang-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 34px;
  height: 26px;
  padding: 0 8px;
  border-radius: 13px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.5px;
  color: #555555;
  text-decoration: none;
  transition: color 0.3s, background-color 0.3s;
}

.top-bar-lang-link:hover {
  color: #009dfe;
  background-color: rgba(0, 157, 254, 0.08);
}

.top-bar-lang-link.is-active {
  color: #ffffff;
  background-color: #009dfe;
}

@media (max-width: 767px) {
  .top-bar .social-links {
    margin-left: 0;
    width: auto;
  }

  .top-bar .container {
    justify-content: center;
  }

  .top-bar-lang {
    margin-left: 10px;
    padding-left: 10px;
  }
}

/* ========================
   Section - MyDural ETU Control System
   ======================== */
.etu-section {
  padding: 90px 0;
  background: linear-gradient(180deg, #f6fafd 0%, #ffffff 100%);
  border-top: 1px solid #eaf1f7;
  border-bottom: 1px solid #eaf1f7;
}

.etu-section .container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Başlık */
.etu-head {
  text-align: center;
  max-width: 820px;
  margin: 0 auto 55px;
}

.etu-label {
  display: inline-block;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: #0078d4;
  margin-bottom: 16px;
}

.etu-title {
  font-size: 44px;
  font-weight: 800;
  color: #222222;
  line-height: 1.15;
  letter-spacing: -1px;
  margin: 0 0 20px;
}

.etu-accent-line {
  width: 48px;
  height: 4px;
  background-color: #009dfe;
  border-radius: 2px;
  margin: 0 auto;
}

/* Gövde */
.etu-body {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 360px;
  gap: 60px;
  align-items: stretch;
}

.etu-left {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

/* Sol kolon, sağdaki görselle aynı hizada bitsin diye
   kartlar kalan yüksekliği eşit paylaşarak uzar.
   Kart sayısı widget alanından geldiği için satır sayısı sabitlenmez. */
.etu-features {
  flex: 1;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  grid-auto-rows: minmax(0, 1fr);
  gap: 24px;
  counter-reset: etu-feature;
}

.etu-feature {
  position: relative;
  counter-increment: etu-feature;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background-color: #ffffff;
  border: 1px solid #e6eef5;
  border-radius: 16px;
  padding: 26px 26px 24px;
  transition: transform 0.3s, box-shadow 0.3s, border-color 0.3s;
}

.etu-feature:hover {
  transform: translateY(-4px);
  border-color: #cfe6f8;
  box-shadow: 0 14px 34px rgba(0, 120, 212, 0.12);
}

.etu-feature-num {
  align-self: flex-start;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border-radius: 10px;
  background-color: #e8f4fe;
  color: #0078d4;
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 14px;
  transition: background-color 0.3s, color 0.3s;
}

.etu-feature-num:empty::before {
  content: counter(etu-feature, decimal-leading-zero);
}

.etu-feature:hover .etu-feature-num {
  background-color: #009dfe;
  color: #ffffff;
}

.etu-feature-title {
  font-size: 17px;
  font-weight: 700;
  color: #222222;
  line-height: 1.35;
  margin: 0 0 10px;
}

.etu-feature-desc {
  font-size: 14px;
  color: #5a6672;
  line-height: 1.75;
  margin: 0;
}

.etu-closing {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  font-size: 15px;
  color: #33404d;
  line-height: 1.8;
  margin: 0;
  padding: 22px 26px;
  background-color: #ffffff;
  border-left: 4px solid #009dfe;
  border-radius: 12px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.05);
}

.etu-closing svg {
  width: 22px;
  height: 22px;
  color: #009dfe;
  flex-shrink: 0;
  margin-top: 3px;
}

/* Görsel */
.etu-right {
  display: flex;
  flex-direction: column;
}

.etu-img-wrap {
  position: relative;
  padding: 14px;
  background: linear-gradient(160deg, #ffffff 0%, #eef6fc 100%);
  border: 1px solid #e0ecf6;
  border-radius: 22px;
  box-shadow: 0 22px 50px rgba(0, 60, 110, 0.13);
}

.etu-img-wrap img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 14px;
}

.etu-img-caption {
  display: block;
  text-align: center;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: #8795a3;
  margin-top: 16px;
}

/* Sol kolon görselden uzun kalırsa görsel de boşluğu doldursun */
.etu-img-wrap {
  flex: 1;
  display: flex;
  align-items: center;
}

@media (max-width: 1200px) {
  .etu-body {
    grid-template-columns: minmax(0, 1fr) 300px;
    gap: 40px;
  }
}

@media (max-width: 1024px) {
  .etu-section {
    padding: 60px 0;
  }

  .etu-title {
    font-size: 34px;
  }

  .etu-body {
    grid-template-columns: 1fr;
    gap: 45px;
  }

  .etu-right {
    position: static;
    max-width: 340px;
    margin: 0 auto;
  }
}

@media (max-width: 767px) {
  .etu-section {
    padding: 45px 0;
  }

  .etu-head {
    margin-bottom: 35px;
  }

  .etu-title {
    font-size: 26px;
  }

  .etu-features {
    grid-template-columns: 1fr;
    grid-auto-rows: auto;
    gap: 16px;
  }

  .etu-feature {
    padding: 22px 20px;
  }

  .etu-closing {
    padding: 18px 20px;
    font-size: 14px;
  }
}

/* ========================
   Footer
   ======================== */

/* ========================
   Search
   ======================== */

/* Top-bar search button â€” sosyal medya ikonlarÄ±yla birebir aynÄ± */
.top-bar-search-btn {
  background: none;
  border: 1px solid rgba(51, 51, 51, 0.2);
  border-radius: 50%;
  cursor: pointer;
  padding: 0;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s;
}
.top-bar-search-btn svg {
  width: 16px;
  height: 16px;
  fill: none;
  stroke: #009dfe;
  stroke-width: 2;
}
.top-bar-search-btn:hover {
  border-color: #009dfe;
}

/* Desktop: full-screen overlay */
.search-overlay {
  position: fixed;
  inset: 0;
  background: rgba(10, 20, 40, 0.92);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.25s ease, visibility 0.25s ease;
}
.search-overlay.active {
  opacity: 1;
  visibility: visible;
}
.search-overlay-inner {
  width: 100%;
  max-width: 700px;
  padding: 0 24px;
  position: relative;
}
.search-overlay-form {
  display: flex;
  align-items: center;
  border-bottom: 2px solid #009dfe;
  gap: 12px;
}
.search-overlay-form input[type="search"] {
  flex: 1;
  background: none;
  border: none;
  outline: none;
  color: #fff;
  font-size: clamp(20px, 3vw, 32px);
  font-weight: 500;
  padding: 16px 0;
  caret-color: #009dfe;
}
.search-overlay-form input[type="search"]::placeholder { color: rgba(255,255,255,0.4); }
.search-overlay-form button[type="submit"] {
  background: none;
  border: none;
  cursor: pointer;
  color: #009dfe;
  padding: 0;
  display: flex;
}
.search-overlay-form button[type="submit"] svg { width: 28px; height: 28px; }
.search-overlay-close {
  position: absolute;
  top: -56px;
  right: 24px;
  background: none;
  border: none;
  cursor: pointer;
  color: rgba(255,255,255,0.6);
  transition: color 0.2s;
  padding: 4px;
}
.search-overlay-close:hover { color: #fff; }
.search-overlay-close svg { width: 28px; height: 28px; }

/* Mobile search bar â€” nav-mobile iÃ§inde en altta */
.mobile-search-bar {
  padding: 16px 20px 20px;
  border-top: 1px solid rgba(255,255,255,0.1);
  margin-top: 8px;
}
.mobile-search-bar form {
  display: flex;
  align-items: center;
  background: rgba(255,255,255,0.08);
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.15);
}
.mobile-search-bar input[type="search"] {
  flex: 1;
  background: none;
  border: none;
  outline: none;
  color: #fff;
  font-size: 14px;
  padding: 10px 14px;
  caret-color: #009dfe;
}
.mobile-search-bar input[type="search"]::placeholder { color: rgba(255,255,255,0.4); }
.mobile-search-bar button {
  background: none;
  border: none;
  cursor: pointer;
  color: #009dfe;
  padding: 8px 12px;
  display: flex;
}
.mobile-search-bar button svg { width: 18px; height: 18px; }

@media (max-width: 1024px) {
  .top-bar-search-btn { display: none; }
}
@media (min-width: 1025px) {
  .nav-mobile .mobile-search-bar { display: none !important; }
}

/* ========================
   Search Page
   ======================== */
.search-hero-query { color: #009dfe; }

.search-bar-section {
  background: #f7f9fc;
  border-bottom: 1px solid #ebebeb;
  padding: 28px 0;
}
.search-bar-section .container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 20px;
}
.search-page-form {
  display: flex;
  align-items: center;
  background: #fff;
  border: 1px solid #e0e0e0;
  border-radius: 10px;
  overflow: hidden;
  max-width: 680px;
  box-shadow: 0 2px 12px rgba(0,0,0,0.05);
}
.search-page-form input[type="search"] {
  flex: 1;
  border: none;
  outline: none;
  padding: 14px 20px;
  font-size: 15px;
  color: #1a1a2e;
  background: none;
}
.search-page-form button[type="submit"] {
  background: #009dfe;
  border: none;
  cursor: pointer;
  color: #fff;
  padding: 14px 24px;
  font-size: 14px;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: background 0.2s;
}
.search-page-form button[type="submit"]:hover { background: #007ecc; }
.search-page-form button[type="submit"] svg { width: 18px; height: 18px; stroke: #fff; }

.site-footer {
  background-color: #111111;
  border-top: 4px solid #009dfe;
  margin-top: 20px;
  font-family: 'Poppins', sans-serif;
}

.site-footer .container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 20px;
}

/* â”€â”€ Footer Top â”€â”€ */
.footer-top {
  padding: 70px 0 55px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 0.85fr 1.2fr;
  gap: 48px;
}

/* â”€â”€ Brand Column â”€â”€ */
.footer-logo {
  display: inline-block;
  margin-bottom: 20px;
}

.footer-logo img {
  height: 42px;
  width: auto;
  filter: brightness(0) invert(1);
  opacity: 0.9;
}

.footer-brand-desc {
  font-size: 13.5px;
  color: rgba(255, 255, 255, 0.5);
  line-height: 1.8;
  margin-bottom: 24px;
  max-width: 300px;
}

.footer-socials {
  display: flex;
  gap: 10px;
}

.footer-social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.07);
  color: rgba(255, 255, 255, 0.55);
  transition: background-color 0.25s, color 0.25s;
}

.footer-social-link svg {
  width: 16px;
  height: 16px;
}

.footer-social-link:hover {
  background-color: #009dfe;
  color: #ffffff;
}

/* â”€â”€ Column Titles â”€â”€ */
.footer-col-title {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #009dfe;
  margin-bottom: 22px;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
}

/* â”€â”€ Nav Links â”€â”€ */
.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-links li a {
  font-size: 13.5px;
  color: rgba(255, 255, 255, 0.55);
  text-decoration: none;
  transition: color 0.2s, padding-left 0.2s;
  display: inline-block;
}

.footer-links li a:hover {
  color: #009dfe;
  padding-left: 4px;
}

/* â”€â”€ Contact List â”€â”€ */
.footer-contact-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.footer-contact-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.footer-contact-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 34px;
  height: 34px;
  border-radius: 8px;
  background-color: rgba(0, 157, 254, 0.12);
  color: #009dfe;
  margin-top: 1px;
}

.footer-contact-icon svg {
  width: 16px;
  height: 16px;
}

.footer-contact-list li a,
.footer-contact-list li span {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.55);
  text-decoration: none;
  line-height: 1.6;
  transition: color 0.2s;
}

.footer-contact-list li a:hover {
  color: #009dfe;
}

/* â”€â”€ Footer Bottom â”€â”€ */
.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.07);
  padding: 22px 0;
}

.footer-bottom .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.footer-copy {
  font-size: 12.5px;
  color: rgba(255, 255, 255, 0.6);
}

.footer-copy-right {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.5);
  letter-spacing: 0.5px;
}

/* â”€â”€ Footer Responsive â”€â”€ */
@media (max-width: 1024px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }

  .footer-brand {
    grid-column: span 2;
  }

  .footer-brand-desc {
    max-width: 100%;
  }
}

@media (max-width: 767px) {
  .footer-top {
    padding: 50px 0 40px;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .footer-brand {
    grid-column: span 1;
  }

  .footer-bottom .container {
    flex-direction: column;
    gap: 6px;
    text-align: center;
  }
}

/* ========================
   WhatsApp Fixed Button
   ======================== */
.wa-fixed-btn {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 999;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background-color: #009dfe;
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 24px rgba(0, 157, 254, 0.45);
  transition: transform 0.25s cubic-bezier(0.22, 1, 0.36, 1),
              box-shadow 0.25s cubic-bezier(0.22, 1, 0.36, 1);
}

.wa-fixed-btn svg {
  width: 28px;
  height: 28px;
}

.wa-fixed-btn:hover {
  transform: scale(1.12);
  box-shadow: 0 10px 32px rgba(0, 157, 254, 0.6);
}



/* ============================================================
   Page Template
   ============================================================ */

/* --- Shared container alignment --- */
.page-hero .container,
.page-content-section .container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 20px;
  width: 100%;
}


/* --- Page Hero --- */
.page-hero {
  position: relative;
  background: linear-gradient(135deg, #0a1628 0%, #0d2045 60%, #009dfe22 100%);
  padding: 64px 0 52px;
  overflow: hidden;
}

.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 80% at 80% 50%, rgba(0,157,254,0.18) 0%, transparent 70%);
  pointer-events: none;
}

.page-hero::after {
  content: 'D';
  position: absolute;
  right: 6%;
  top: 50%;
  transform: translateY(-50%);
  font-size: clamp(120px, 18vw, 240px);
  font-weight: 900;
  color: rgba(0,157,254,0.07);
  font-family: 'Poppins', sans-serif;
  line-height: 1;
  pointer-events: none;
  user-select: none;
}

.page-hero-overlay {
  display: none;
}

.page-hero-content {
  position: relative;
  z-index: 1;
}

.page-breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: rgba(255,255,255,0.55);
  margin-bottom: 18px;
}

.page-breadcrumb a {
  color: rgba(255,255,255,0.55);
  text-decoration: none;
  transition: color 0.2s;
}

.page-breadcrumb a:hover {
  color: #009dfe;
}

.page-breadcrumb-sep {
  color: rgba(255,255,255,0.3);
  font-size: 15px;
}

.page-breadcrumb span:last-child {
  color: #009dfe;
}

.page-hero-title {
  font-size: clamp(28px, 4vw, 48px);
  font-weight: 700;
  color: #ffffff;
  line-height: 1.15;
  position: relative;
}

.page-hero-title::after {
  content: '';
  display: block;
  width: 52px;
  height: 4px;
  background: #009dfe;
  border-radius: 2px;
  margin-top: 16px;
}

/* --- Page Content Section --- */
.page-content-section {
  padding: 70px 0 90px;
  background: #fff;
}


.page-featured-img {
  width: 100%;
  border-radius: 12px;
  overflow: hidden;
  margin-bottom: 40px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.10);
}

.page-featured-img img {
  width: 100%;
  height: auto;
  display: block;
}

.page-entry-content {
  font-size: 16px;
  line-height: 1.85;
  color: #3a3a3a;
}

.page-entry-content h2 {
  font-size: 26px;
  font-weight: 700;
  color: #0a1628;
  margin: 40px 0 14px;
}

.page-entry-content h3 {
  font-size: 20px;
  font-weight: 600;
  color: #0a1628;
  margin: 32px 0 10px;
}

.page-entry-content p {
  margin-bottom: 20px;
}

.page-entry-content ul,
.page-entry-content ol {
  margin: 0 0 20px 24px;
}

.page-entry-content li {
  margin-bottom: 8px;
}

.error404 .page-entry-content a {
color: #fff;
}
.page-entry-content a {
  color: #009dfe;
  text-decoration: none;
  border-bottom: 1px solid rgba(0,157,254,0.3);
  transition: border-color 0.2s;
}

.page-entry-content a:hover {
  border-color: #009dfe;
}

.page-entry-content img {
  max-width: 100%;
  border-radius: 8px;
  height: auto;
}

.page-entry-content blockquote {
  border-left: 4px solid #009dfe;
  background: #f0f8ff;
  margin: 24px 0;
  padding: 18px 24px;
  border-radius: 0 8px 8px 0;
  font-style: italic;
  color: #555;
}

/* ============================================================
   Contact Page
   ============================================================ */

.contact-hero-sub {
  font-size: 16px;
  color: rgba(255,255,255,0.65);
  margin-top: 12px;
  max-width: 520px;
}

.contact-info-bar {
  background: #f7f9fc;
  border-bottom: 1px solid #ebebeb;
  padding: 48px 0;
}

.contact-info-bar .container,
.contact-main-section .container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 20px;
  width: 100%;
}

.contact-info-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.contact-info-card {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  background: #fff;
  border: 1px solid #e8e8e8;
  border-radius: 12px;
  padding: 24px 22px;
  transition: box-shadow 0.2s;
}

.contact-info-card:hover {
  box-shadow: 0 4px 20px rgba(0,0,0,0.07);
}

.contact-info-icon {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  background: rgba(0,157,254,0.1);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.contact-info-icon svg {
  width: 22px;
  height: 22px;
  color: #009dfe;
}

.contact-info-card-title {
  font-size: 13px;
  font-weight: 700;
  color: #009dfe;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 8px;
}

.contact-info-body p {
  font-size: 14px;
  color: #444;
  line-height: 1.65;
  margin-bottom: 4px;
}

.contact-info-body p:last-child { margin-bottom: 0; }

.contact-zip {
  font-size: 12px !important;
  color: #999 !important;
  margin-top: 4px !important;
}

.contact-info-body a {
  display: block;
  font-size: 14px;
  color: #333;
  text-decoration: none;
  line-height: 1.8;
  transition: color 0.2s;
}

.contact-info-body a:hover { color: #009dfe; }

.contact-main-section {
  padding: 72px 0 90px;
  background: #fff;
}

.contact-main-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: stretch;
}

.contact-form-label {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  color: #0078d4;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 8px;
}

.contact-section-title {
  font-size: clamp(22px, 2.5vw, 30px);
  font-weight: 700;
  color: #1a1a2e;
  margin-bottom: 12px;
}

.contact-accent-line {
  width: 40px;
  height: 3px;
  background: #009dfe;
  border-radius: 2px;
  margin-bottom: 28px;
}

.contact-form-wrap {
  background: #f7f9fc;
  border: 1px solid #e8e8e8;
  border-radius: 14px;
  padding: 32px 28px;
}

.contact-form-wrap .wpcf7-form {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.contact-form-wrap .wpcf7-form p { margin-bottom: 16px; }

.contact-form-wrap input[type="text"],
.contact-form-wrap input[type="email"],
.contact-form-wrap input[type="tel"],
.contact-form-wrap input[type="url"],
.contact-form-wrap select,
.contact-form-wrap textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid #dde2e8;
  border-radius: 8px;
  font-size: 14px;
  font-family: inherit;
  color: #333;
  background: #fff;
  transition: border-color 0.2s, box-shadow 0.2s;
  outline: none;
  box-sizing: border-box;
}

.contact-form-wrap input:focus,
.contact-form-wrap textarea:focus {
  border-color: #009dfe;
  box-shadow: 0 0 0 3px rgba(0,157,254,0.12);
}

.contact-form-wrap textarea {
  min-height: 130px;
  resize: vertical;
}

.contact-form-wrap input[type="submit"],
.contact-form-wrap .wpcf7-submit {
  background: #009dfe;
  color: #fff;
  border: none;
  border-radius: 8px;
  padding: 13px 32px;
  font-size: 14px;
  font-weight: 600;
  font-family: inherit;
  cursor: pointer;
  transition: background 0.2s, transform 0.15s;
}

.contact-form-wrap input[type="submit"]:hover,
.contact-form-wrap .wpcf7-submit:hover {
  background: #0080d4;
  transform: translateY(-1px);
}

.contact-map-col {
  display: flex;
  flex-direction: column;
}

.contact-map-wrap {
  border-radius: 14px;
  overflow: hidden;
  flex: 1;
  min-height: 300px;
  border: 1px solid #e0e0e0;
  box-shadow: 0 4px 24px rgba(0,0,0,0.07);
  margin-bottom: 16px;
}

.contact-map-wrap iframe {
  width: 100%;
  height: 100%;
  display: block;
}

.contact-directions-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  align-self: flex-start;
  background: #1a1a2e;
  color: #fff;
  text-decoration: none;
  font-size: 13px;
  font-weight: 600;
  padding: 11px 20px;
  border-radius: 8px;
  transition: background 0.2s, transform 0.15s;
}

.contact-directions-btn svg { width: 16px; height: 16px; }

.contact-directions-btn:hover {
  background: #009dfe;
  transform: translateY(-1px);
}

@media (max-width: 1024px) {
  .contact-main-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }
  .contact-map-wrap { height: 320px; }
}

@media (max-width: 768px) {
  .contact-info-grid { grid-template-columns: 1fr; }
  .contact-info-bar { padding: 32px 0; }
  .contact-main-section { padding: 48px 0 64px; }
  .contact-form-wrap { padding: 24px 18px; }
}

/* ============================================================
   Category Archive
   ============================================================ */

.cat-hero-desc {
  font-size: 16px;
  color: rgba(255,255,255,0.7);
  margin-top: 12px;
  max-width: 600px;
}

.cat-hero-count {
  font-size: 13px;
  color: rgba(255,255,255,0.45);
  margin-top: 8px;
  letter-spacing: 0.02em;
}

.cat-hero-count strong {
  color: #009dfe;
}

/* Grid */
.cat-posts-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-bottom: 56px;
}

/* Kart */
.cat-post-card {
  background: #fff;
  border: 1px solid #ebebeb;
  border-radius: 12px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: box-shadow 0.25s, transform 0.25s;
}

.cat-post-card:hover {
  box-shadow: 0 8px 32px rgba(0,0,0,0.10);
  transform: translateY(-4px);
}

/* Thumbnail */
.cat-card-thumb-link {
  display: block;
  overflow: hidden;
  aspect-ratio: 1 / 1;
}

.cat-card-thumb {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
  display: block;
}

.cat-post-card:hover .cat-card-thumb {
  transform: scale(1.04);
}

.cat-card-thumb-placeholder {
  background: linear-gradient(135deg, #f0f4f8, #e8edf2);
  display: flex;
  align-items: center;
  justify-content: center;
}

.cat-card-thumb-placeholder svg {
  width: 48px;
  height: 48px;
  color: #ccc;
}

/* Card body */
.cat-card-body {
  padding: 22px 24px 24px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.cat-card-meta {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 10px;
}

.cat-card-date {
  font-size: 12px;
  color: #999;
}

.cat-card-tag {
  font-size: 11px;
  font-weight: 600;
  color: #009dfe;
  background: rgba(0,157,254,0.08);
  padding: 2px 8px;
  border-radius: 20px;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.cat-card-tag:hover {
  background: rgba(0,157,254,0.18);
}

.cat-card-title {
  font-size: 17px;
  font-weight: 700;
  line-height: 1.4;
  margin-bottom: 10px;
  color: #1a1a2e;
}

.cat-card-title a {
  color: inherit;
  text-decoration: none;
  transition: color 0.2s;
}

.cat-card-title a:hover {
  color: #009dfe;
}

.cat-card-excerpt {
  font-size: 14px;
  color: #666;
  line-height: 1.65;
  flex: 1;
  margin-bottom: 18px;
}

.cat-card-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  font-weight: 600;
  color: #009dfe;
  text-decoration: none;
  transition: gap 0.2s, color 0.2s;
}

.cat-card-btn svg {
  width: 16px;
  height: 16px;
  transition: transform 0.2s;
}

.cat-card-btn:hover {
  color: #0077cc;
  gap: 10px;
}

.cat-card-btn:hover svg {
  transform: translateX(3px);
}

/* Pagination */
.cat-pagination {
  display: flex;
  justify-content: center;
}

.cat-pagination .nav-links {
  display: flex;
  align-items: center;
  gap: 6px;
}

.cat-pagination .page-numbers {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 40px;
  height: 40px;
  padding: 0 10px;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 500;
  color: #444;
  text-decoration: none;
  transition: background 0.2s, color 0.2s, border-color 0.2s;
}

.cat-pagination .page-numbers:hover {
  background: #f5f5f5;
  border-color: #ccc;
  color: #009dfe;
}

.cat-pagination .page-numbers.current {
  background: #009dfe;
  border-color: #009dfe;
  color: #fff;
}

.cat-pagination .page-numbers.dots {
  border: none;
  background: transparent;
  color: #999;
}

/* Empty state */
.cat-empty {
  text-align: center;
  padding: 80px 20px;
}

.cat-empty svg {
  width: 56px;
  height: 56px;
  color: #ccc;
  margin: 0 auto 16px;
  display: block;
}

.cat-empty p {
  font-size: 16px;
  color: #888;
  margin-bottom: 24px;
}

/* Responsive */
@media (max-width: 1200px) {
  .cat-posts-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 1024px) {
  .cat-posts-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .page-hero {
    padding: 48px 0 36px;
  }
  .page-content-section {
    padding: 48px 0 64px;
  }
  .page-hero::after {
    display: none;
  }
  .cat-posts-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .cat-card-thumb-link {
    aspect-ratio: 1 / 1;
  }
}

/* --- Single Post --- */
.single-meta {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: rgba(255,255,255,0.55);
  margin-top: 14px;
}

.single-meta-sep {
  color: rgba(255,255,255,0.3);
}

.single-article {
  max-width: 100%;
}

.single-post-nav {
  display: flex;
  gap: 20px;
  margin-top: 48px;
  padding-top: 32px;
  border-top: 1px solid #eee;
}

.single-nav-link {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding: 20px 24px;
  border: 1px solid #e8e8e8;
  border-radius: 10px;
  text-decoration: none;
  transition: border-color 0.2s, box-shadow 0.2s;
}

.single-nav-link:hover {
  border-color: #009dfe;
  box-shadow: 0 4px 16px rgba(0,157,254,0.1);
}

.single-nav-next {
  text-align: right;
}

.single-nav-label {
  font-size: 12px;
  color: #009dfe;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.single-nav-title {
  font-size: 14px;
  color: #333;
  font-weight: 500;
  line-height: 1.4;
}

@media (max-width: 600px) {
  .single-post-nav {
    flex-direction: column;
  }
  .single-nav-next {
    text-align: left;
  }
}

/* ===== ÃœrÃ¼n Layout ===== */
.product-layout {
  display: grid;
  grid-template-columns: 30% 1fr;
  gap: 48px;
  align-items: start;
}

/* Sol kolon: yapÄ±ÅŸÄ±k scroll */
.product-gallery-col {
  position: sticky;
  top: 100px;
}

.product-main-img {
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 8px 32px rgba(0,0,0,0.10);
  margin-bottom: 12px;
}

.product-main-img img {
  width: 100%;
  height: auto;
  display: block;
}

.product-thumbs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.product-thumb-link {
  display: block;
  width: calc(33.333% - 6px);
  border-radius: 8px;
  overflow: hidden;
  border: 2px solid transparent;
  transition: border-color 0.2s;
}

.product-thumb-link:hover {
  border-color: #009dfe;
}

.product-thumb-link img {
  width: 100%;
  height: 70px;
  object-fit: cover;
  display: block;
}

/* SaÄŸ kolon: iÃ§erik */
.product-content-col {
  min-width: 0;
}

.product-catalogue {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 24px;
  padding-bottom: 20px;
  border-bottom: 1px solid #eee;
}

.product-catalogue-label {
  font-size: 14px;
  color: #666;
  white-space: nowrap;
}

.product-catalogue-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 14px;
  color: #009dfe;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.2s;
}

.product-catalogue-link:hover {
  color: #0078c2;
}

.product-catalogue-icon {
  display: flex;
  align-items: center;
}

.product-entry-content {
  border-bottom: 1px solid #eee;
  padding-bottom: 24px;
  margin-bottom: 20px;
}

.product-category-line {
  font-size: 14px;
  color: #666;
  margin-bottom: 0;
}

.product-category-line a {
  color: #009dfe;
  font-weight: 600;
  text-decoration: none;
}

.product-category-line a:hover {
  text-decoration: underline;
}

/* ===== Zoom butonu ===== */
.product-main-img {
  position: relative;
}

.product-zoom-btn {
  position: absolute;
  bottom: 12px;
  left: 12px;
  width: 36px;
  height: 36px;
  background: rgba(255,255,255,0.85);
  border: none;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: #333;
  transition: background 0.2s, transform 0.2s;
  z-index: 2;
}

.product-zoom-btn:hover {
  background: #fff;
  transform: scale(1.1);
}

/* ===== Thumbnail aktif ===== */
.product-thumb-link.active {
  border-color: #009dfe;
}

/* ===== Lightbox ===== */
.product-lightbox {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 99999;
  align-items: center;
  justify-content: center;
}

.product-lightbox.active {
  display: flex;
}

.product-lightbox-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.88);
  cursor: pointer;
}

.product-lightbox-inner {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  gap: 16px;
  max-width: 90vw;
  max-height: 90vh;
}

.lb-img {
  max-width: 80vw;
  max-height: 85vh;
  object-fit: contain;
  border-radius: 8px;
  display: block;
}

.lb-close,
.lb-prev,
.lb-next {
  background: rgba(255,255,255,0.15);
  border: none;
  color: #fff;
  font-size: 22px;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s;
  flex-shrink: 0;
}

.lb-close:hover,
.lb-prev:hover,
.lb-next:hover {
  background: rgba(255,255,255,0.3);
}

.lb-close {
  position: absolute;
  top: -50px;
  right: 0;
}

.lb-counter {
  position: absolute;
  bottom: -36px;
  left: 50%;
  transform: translateX(-50%);
  color: rgba(255,255,255,0.7);
  font-size: 13px;
}

/* ===== ÃœrÃ¼n Sekmeler (Tabs) ===== */
.product-tabs-section {
  margin-top: 56px;
}

.product-tabs-nav {
  display: flex;
  border-bottom: 2px solid #e8e8e8;
  margin-bottom: 0;
  flex-wrap: wrap;
  gap: 3px;
  padding-bottom: 0;
}

.product-tab-btn {
  padding: 12px 26px;
  background: #f0f0f0;
  border: 1px solid #e0e0e0;
  border-bottom: 2px solid transparent;
  margin-bottom: -2px;
  border-radius: 6px 6px 0 0;
  font-size: 14px;
  font-weight: 600;
  color: #555;
  cursor: pointer;
  transition: background 0.2s, color 0.2s, border-color 0.2s;
  white-space: nowrap;
  letter-spacing: 0.01em;
}

.product-tab-btn:hover {
  background: #e2e2e2;
  color: #222;
  border-color: #ccc;
  border-bottom-color: transparent;
}

.product-tab-btn.active {
  background: #009dfe;
  color: #fff;
  border-color: #009dfe;
  border-bottom-color: #009dfe;
}

.product-tab-panel {
  display: none;
  padding: 36px 0;
}

.product-tab-panel.active {
  display: block;
}

.product-tab-videos {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 24px;
}

/* YouTube Kart */
.yt-card {
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0,0,0,0.10);
  background: #000;
  cursor: pointer;
}

.yt-card-thumb {
  position: relative;
  padding-bottom: 56.25%;
  overflow: hidden;
}

.yt-card-thumb img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.3s;
}

.yt-card:hover .yt-card-thumb img {
  transform: scale(1.04);
}

.yt-card-play {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
}

.yt-card-play svg {
  filter: drop-shadow(0 2px 8px rgba(0,0,0,0.5));
  transition: transform 0.2s;
}

.yt-card:hover .yt-card-play svg {
  transform: scale(1.12);
}

.yt-card-iframe {
  position: relative;
  padding-bottom: 56.25%;
}

.yt-card-iframe iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: none;
}

.product-tab-content {
  max-width: 860px;
}

/* Ã–zellik Listesi */
.product-feature-list {
  max-width: 860px;
}

.product-feature-heading {
  font-size: 22px;
  font-weight: 700;
  color: #0a1628;
  margin: 0 0 24px;
}

.product-feature-row {
  padding: 16px 0;
  border-bottom: 1px solid #eee;
  font-size: 15px;
  color: #444;
  line-height: 1.5;
}

.product-feature-row:first-of-type {
  border-top: 1px solid #eee;
}

@media (max-width: 768px) {
  .product-tab-btn {
    padding: 10px 16px;
    font-size: 13px;
  }
}

/* Gutenberg admin panel vurgusu */
.duralbend-product-panel .components-panel__body-title button {
  font-weight: 700;
  color: #009dfe;
}

@media (max-width: 900px) {
  .product-layout {
    grid-template-columns: 1fr;
  }
  .product-gallery-col {
    position: static;
  }
}
