body {
    margin: 0;
    font-family: "Plus Jakarta Sans", sans-serif;
    color: #001d55;
    overflow-x: hidden;
  }

  /* Mobilde footer için body ayarları */
  @media (max-width: 768px) {
    body {
      padding-bottom: 0;
      min-height: 100vh;
    }
  }

  @media (max-width: 480px) {
    body {
      padding-bottom: 0;
    }
  }

  /* === VIDEO ARKA PLANI === */
  .hero-media-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    z-index: 1;
    overflow: hidden;
  }

  .hero-media-wrapper video {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
    /* Video optimizasyonu için */
    min-width: 100%;
    min-height: 100%;
    /* GPU acceleration ve performance için */
    transform: translateZ(0);
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
  }

  /* === HEADER GENEL === */
  .site-header {
    background-color: transparent;
    padding: 1.3rem 8%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    position: relative;
    z-index: 500;
    transition: background-color 0.3s ease, box-shadow 0.3s ease, padding 0.3s ease;
  }

  .site-header.is-sticky {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    width: 90%;
    background-color: #ffffff;
    box-shadow: 0 12px 35px rgba(0, 29, 85, 0.12);
    z-index: 1000;
  }

  /* Header padding optimizasyonu */
  @media (max-width: 1500px) {
    .site-header {
      padding: 1.8rem 8%;
    }
  }

  @media (max-width: 1400px) {
    .site-header {
      padding: 1.6rem 6%;
    }
  }

  @media (max-width: 1350px) {
    .site-header {
      padding: 1.4rem 5%;
    }
  }

  @media (max-width: 1300px) {
    .site-header {
      padding: 1.2rem 4%;
    }
  }

  @media (max-width: 1250px) {
    .site-header {
      padding: 1rem 3%;
    }
  }

  .site-logo img {
    width: 10rem;
    height: auto;
    object-fit: contain;
  }

  /* Logo boyut optimizasyonu */
  @media (max-width: 1400px) {
    .site-logo img {
      width: 9rem;
    }
  }

  @media (max-width: 1300px) {
    .site-logo img {
      width: 8rem;
    }
  }

  @media (max-width: 1250px) {
    .site-logo img {
      width: 7rem;
    }
  }

  .mobile-menu-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    padding: 0.5rem;
    background: none;
    border: none;
    z-index: 1001;
  }

  .hamburger-line {
    width: 25px;
    height: 3px;
    background: #001d55;
    margin: 3px 0;
    transition: 0.3s;
    border-radius: 2px;
  }
  .mobile-menu-toggle.active .hamburger-line {
      background: white;
  }

  .mobile-menu-toggle.active .hamburger-line:nth-child(1) {
    transform: rotate(-45deg) translate(-5px, 6px);
  }
  .mobile-menu-toggle.active .hamburger-line:nth-child(2) {
    opacity: 0;
  }
  .mobile-menu-toggle.active .hamburger-line:nth-child(3) {
    transform: rotate(45deg) translate(-5px, -6px);
  }

  .main-nav {
    display: flex;
    align-items: center;
    gap: 2rem;
  }

  .main-nav ul {
    display: flex;
    align-items: center;
    gap: 2rem;
    margin: 0;
    padding: 0;
    list-style: none;
  }

  /* Progresif gap küçültme */
  @media (max-width: 1500px) {
    .main-nav {
      gap: 1.8rem;
    }
    .main-nav ul {
      gap: 1.8rem;
    }
  }

  @media (max-width: 1400px) {
    .main-nav {
      gap: 1.5rem;
    }
    .main-nav ul {
      gap: 1.5rem;
    }
  }

  @media (max-width: 1350px) {
    .main-nav {
      gap: 1.2rem;
    }
    .main-nav ul {
      gap: 1.2rem;
    }
  }

  @media (max-width: 1300px) {
    .main-nav {
      gap: 1rem;
    }
    .main-nav ul {
      gap: 1rem;
    }
  }

  @media (max-width: 1250px) {
    .main-nav {
      gap: 0.8rem;
    }
    .main-nav ul {
      gap: 0.8rem;
    }
  }

  .main-nav a {
    text-decoration: none;
    font-size: 0.9rem;
    color: #001d55;
    transition: color 0.3s ease;
    cursor: pointer;
  }

  /* Compakt header için font ayarları */
  @media (max-width: 1500px) {
    .main-nav a {
      font-size: 0.85rem;
    }
  }

  @media (max-width: 1400px) {
    .main-nav a {
      font-size: 0.8rem;
    }
  }

  @media (max-width: 1300px) {
    .main-nav a {
      font-size: 0.75rem;
    }
  }

  .main-nav a:hover {
    color: #000000;
    font-weight: bold;
  }

  .main-nav .icon-link i {
    color: #008ace;
    vertical-align: middle;
    font-size: 1.5rem;
  }

  /* === DROPDOWN MENÜ === */

  .dropdown-content {
    position: absolute;
    top: 100%;
    left: -50px;
    background-color: white;
    min-width: 320px;
    max-width: 1700px;
    box-shadow: 0 20px 50px rgba(0,0,0,0.12);
    border-radius: 20px;
    z-index: 1000;
    padding: 32px;
    margin-top: 0;
    border: 1px solid rgba(0, 29, 85, 0.06);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.4s ease;
    display: grid;
    grid-template-columns: 200px 1fr 1fr;
    gap: 32px;
  }

  .dropdown-content a {
    color: #001d55 !important;
    padding: 12px 16px;
    text-decoration: none;
    display: block;
    transition: all 0.3s ease;
    font-size: 0.9rem;
    position: relative;
    border-radius: 8px;
    margin-bottom: 4px;
  }



  .mega-menu-column {
    display: flex;
    flex-direction: column;
  }

  .mega-menu-title {
    font-size: 0.85rem;
    font-weight: 700;
    color: #019cd3;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin: 0 0 16px 0;
    padding: 0 0 10px 0;
    border-bottom: 2px solid #e0f7ff;
  }

  .mega-menu-visual {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    padding: 20px;
    background: linear-gradient(135deg, #f8fbff 0%, #e8f4ff 100%);
    border-radius: 16px;
    text-align: center;
  }

  .mega-menu-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #019cd3, #00a9e0);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
    box-shadow: 0 8px 25px rgba(1, 156, 211, 0.3);
  }

  .mega-menu-icon i {
    font-size: 2.5rem;
    color: white;
  }

  .mega-menu-visual h3 {
    font-size: 1.1rem;
    font-weight: 600;
    color: #001d55;
    margin: 0 0 8px 0;
  }

  .mega-menu-visual p {
    font-size: 0.85rem;
    color: #666;
    margin: 0;
    line-height: 1.4;
  }

  /* === PRODUCTS DROPDOWN ÖZEL STİLLER === */
  .products-content {
    width: min(1350px, 85vw);
    height: 420px;
    max-width: 85vw;
    grid-template-columns: 2fr 1fr;
    gap: 30px;
    padding: 22px 30px;
    overflow: hidden;
  }

  /* === APPLICATION AREAS DROPDOWN ÖZEL STİLLER === */
  .application-areas-content {
    width: min(1000px, 75vw);
    height: auto;
    min-height: 280px;
    max-height: 350px;
    max-width: 75vw;
    grid-template-columns: 1fr;
    gap: 25px;
    padding: 20px 30px;
  }

  .application-areas-content .products-categories {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
  }

  .application-areas-content .category-items {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px 30px;
    column-gap: 30px;
  }

  .application-areas-content .category-item {
    font-size: 0.8rem;
    line-height: 1.3;
    padding: 6px 0;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }

  .application-areas-content .item-name {
    font-size: 0.8rem;
    line-height: 1.3;
    display: block;
    max-width: 100%;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  /* Uzun text'ler için özel kısaltmalar */
  .application-areas-content .item-name:hover {
    white-space: normal;
    overflow: visible;
    text-overflow: clip;
    word-wrap: break-word;
    z-index: 10;
    position: relative;
    background: white;
    padding: 2px 4px;
    border-radius: 4px;
  }

  /* 1358-1699 aralığı için dropdown daraltma */
  @media (max-width: 1699px) and (min-width: 1358px) {
    .application-areas-content {
      width: min(900px, 75vw) !important;
      max-width: 55vw !important;
      transform: translateX(-12%) !important;
      min-height: 270px;
      max-height: 320px;
      padding: 18px 24px !important;
    }

    .application-areas-content .products-categories {
      gap: 35px !important;
    }

    .application-areas-content .category-items {
      gap: 6px 22px !important;
      column-gap: 22px !important;
    }

    .application-areas-content .category-item {
      font-size: 0.78rem !important;
      padding: 5px 0 !important;
    }

    .application-areas-content .item-name {
      font-size: 0.78rem !important;
    }

    .dropdown:nth-child(3) .dropdown-content {
      left: max(-120px, calc(-18vw + 70px)) !important;
    }

    .dropdown:nth-child(3) .dropdown-content::before {
      left: min(180px, calc(18vw + 90px)) !important;
    }
  }

  /* Çok büyük ekranlar için limit */
  @media (min-width: 1701px) {
    .products-content {
      width: min(1200px, 72vw);
      max-width: 72vw;
      transform: translateX(-3%);
      gap: 28px;
      padding: 20px 28px;
    }

    .application-areas-content {
      width: min(950px, 70vw);
      max-width: 70vw;
      transform: translateX(-5%);
      min-height: 300px;
    }

    .application-areas-content .products-categories {
      gap: 60px;
    }

    .application-areas-content .category-items {
      gap: 10px 40px;
      column-gap: 40px;
    }

    .application-areas-content .category-item {
      font-size: 0.85rem;
      padding: 8px 0;
    }

    .application-areas-content .item-name {
      font-size: 0.85rem;
    }

    .dropdown:nth-child(2) .dropdown-content {
      left: max(-250px, calc(-25vw + 80px));
    }

    .dropdown:nth-child(2) .dropdown-content::before {
      left: min(300px, calc(25vw + 120px));
    }

    .dropdown:nth-child(3) .dropdown-content {
      left: max(-250px, calc(-25vw + 80px));
    }

    .dropdown:nth-child(3) .dropdown-content::before {
      left: min(300px, calc(25vw + 120px));
    }
  }

  .products-categories {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
  }

  .category-section {
    display: flex;
    flex-direction: column;
    position: relative;
    overflow: visible;
  }

  .category-title {
    font-size: 16px;
    font-weight: 800;
    color: #019cd3;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin: 14px 0 16px 12px;
    padding: 0 0 7px 0;
    border-bottom: none;
    position: relative;
  }

  .category-title::after {
    content: '';
    position: absolute;
    left: -12px;
    bottom: 0;
    height: 2px;
    width: 110%;
    background-color: #e0f7ff;
    z-index: 1;
    transition: width 0.3s ease, background-color 0.3s ease;
  }

  /* Products dropdown - INDUSTRY/ENDÜSTRİYEL kategorisi için hover durumu */
  .products-content .industry-category:hover .category-title::after,
  .products-content .endustriyel-category:hover .category-title::after,
  .products-content .endüstriyel-category:hover .category-title::after,
  .products-content .industrial-category:hover .category-title::after,
  .products-content .category-section:first-child:hover .category-title::after {
    width: 135%;
    background-color: #17595E;
  }

  /* Products dropdown - IRRIGATION/TARIMSAL kategorisi için hover durumu */
  .products-content .irrigation-category:hover .category-title::after,
  .products-content .tarimsal-category:hover .category-title::after,
  .products-content .agricultural-category:hover .category-title::after,
  .products-content .category-section:last-child:hover .category-title::after {
    width: 135%;
    background-color: #FACA00;
  }

  /* Application Areas dropdown - INDUSTRY kategorisi için hover durumu */
  .application-areas-content .industry-category:hover .category-title::after {
    width: 105%;
    background-color: #00a9e0;
  }

  /* Application Areas dropdown - IRRIGATION kategorisi için hover durumu */
  .application-areas-content .irrigation-category:hover .category-title::after {
    width: 105%;
    background-color: #00a9e0;
  }

  .category-items {
    display: flex;
    flex-direction: column;
    gap: 0;
  }

  .category-item {
    display: flex;
    align-items: center;
    padding: 2px 0;
    text-decoration: none;
    color: #001d55 !important;
    border-radius: 0;
    transition: all 0.3s ease;
    font-size: 0.85rem;
    margin-bottom: 0;
    line-height: 12.9px;
  }

  .category-item:hover {
    color: #000 !important;
  }

  .category-item:hover .item-name {
    color: #000;
    font-weight: 700;
  }

  .item-name {
    font-weight: 400;
    color: #001d55;
    font-size: 15px;
  }

  .category-item-link {
    text-decoration: none;
    color: inherit;
  }

  /* === FILTER TOOLTIP === */
  .category-item.has-tooltip {
    position: relative;
  }

  .filter-tooltip {
    position: absolute;
    left: 70%;
    top: 0%;
    transform: translateY(5px);

    padding: 6px 8px;
    border-radius: 6px;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 1003;
    display: flex;
    flex-direction: column;
    gap: 2px;
    margin-top: 5px;
    min-width: max-content;
  }

  .filter-tooltip a {
    font-size: 12px;
    color: #001d55;
    font-weight: 500;
    white-space: nowrap;
    text-decoration: none;
    padding: 4px 8px;
    border-radius: 4px;
    transition: all 0.2s ease-in-out;
    text-align: center;
  }

  .filter-tooltip a:hover {
    color: #000;
    font-weight: 600;
    transform: translateY(-1px);
  }

  .category-item.has-tooltip:hover .filter-tooltip {
    opacity: 0.75;
    visibility: visible;
  }

  .products-visual {
    display: flex;
    align-items: center;
    justify-content: center;
    background: transparent;
    border-radius: 0;
    padding: 12px;
    width: min(100%, 640px);
    max-width: 100%;
    height: min(100%, 520px);
    max-height: 620px;
    overflow: hidden;

  }

  .products-visual img {
    border-radius: 0;
    box-shadow: none;
    width: 100%;
    height: 100%;
    object-fit: contain;
    transform-origin: center;
    transition: transform 0.35s ease;
  }

  #categoryHoverImage {
    width: 100%;
    height: 100%;
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    transform-origin: center;
    transition: transform 0.35s ease;
  }

  .dropdown:hover .products-visual img,
  .products-visual:hover img {
    transform: scale(1.08);
  }

  @media (max-width: 1024px) {
    .products-visual {
      width: 100%;
      height: 320px;
      padding: 0;
    }
  }

  /* Products dropdown özel pozisyon */
  .dropdown:nth-child(2) .dropdown-content {
    left: max(-480px, calc(-30vw - 120px));
    top: 48px;
  }

  /* Products dropdown ok işareti */
  .dropdown:nth-child(2) .dropdown-content::before {
    content: '';
    position: absolute;
    top: -10px;
    left: min(520px, calc(30vw + 200px));
    width: 0;
    height: 0;
    border-left: 10px solid transparent;
    border-right: 10px solid transparent;
    border-bottom: 10px solid white;
    z-index: 10022;
  }

  /* Application Areas dropdown özel pozisyon */
  .dropdown:nth-child(3) .dropdown-content {
    left: max(-420px, calc(-28vw - 100px));
    top: 48px;
  }

  /* Application Areas dropdown ok işareti */
  .dropdown:nth-child(3) .dropdown-content::before {
    content: '';
    position: absolute;
    top: -10px;
    left: min(460px, calc(28vw + 180px));
    width: 0;
    height: 0;
    border-left: 10px solid transparent;
    border-right: 10px solid transparent;
    border-bottom: 10px solid white;
    z-index: 10022;
  }

  /* Corporate dropdown özel stil - Görseldeki gibi */
  .corporate-dropdown .corporate-content {
    width: 280px;
    height: auto;
    max-width: 80vw;
    grid-template-columns: 1fr;
    padding: 20px;
    gap: 0;
    z-index: 1001;
    position: absolute;
    top: 55px;
  }

  .corporate-dropdown .corporate-content::before {
    content: '';
    position: absolute;
    top: -10px;
    left: 84px;
    width: 0;
    height: 0;
    border-left: 10px solid transparent;
    border-right: 10px solid transparent;
    border-bottom: 10px solid white;
    z-index: 1002;
  }

  .corporate-links {
    display: flex;
    flex-direction: column;
  }

  .corporate-dropdown .corporate-content a {
    padding: 12px 0;
    border-radius: 0;
    margin-bottom: 4px;
    font-size: 0.95rem;
  }

  /* Media dropdown özel stil - Corporate ile aynı tarzda */
  .media-dropdown .media-content {
    width: 280px;
    height: auto;
    max-width: 80vw;
    grid-template-columns: 1fr;
    padding: 20px;
    gap: 0;
    z-index: 1001;
    position: absolute;
    top: 55px;
  }

  .media-dropdown .media-content::before {
    content: '';
    position: absolute;
    top: -10px;
    left: 84px;
    width: 0;
    height: 0;
    border-left: 10px solid transparent;
    border-right: 10px solid transparent;
    border-bottom: 10px solid white;
    z-index: 1002;
  }

  .media-links {
    display: flex;
    flex-direction: column;
  }

  .media-dropdown .media-content a {
    padding: 12px 0;
    border-radius: 0;
    margin-bottom: 4px;
    font-size: 0.95rem;
  }



  .dropdown:hover .dropdown-content {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }

  .dropdown {
    position: relative;
    display: inline-block;
  }

  .dropdown-arrow {
    font-size: 1rem;
    margin-left: 4px;
    transition: transform 0.3s ease;
    vertical-align: middle;
  }

  /* Dropdown arrow boyut optimizasyonu */
  @media (max-width: 1400px) {
    .dropdown-arrow {
      font-size: 0.9rem;
      margin-left: 3px;
    }
  }

  @media (max-width: 1300px) {
    .dropdown-arrow {
      font-size: 0.8rem;
      margin-left: 2px;
    }
  }

  @media (max-width: 1250px) {
    .dropdown-arrow {
      font-size: 0.7rem;
      margin-left: 2px;
    }
  }

  .dropdown:hover .dropdown-arrow {
    transform: rotate(270deg);
  }

  .header-actions {
    display: flex;
    align-items: center;
    gap: 1rem;
  }

  /* Header actions gap optimizasyonu */
  @media (max-width: 1400px) {
    .header-actions {
      gap: 0.8rem;
    }
  }

  @media (max-width: 1350px) {
    .header-actions {
      gap: 0.6rem;
    }
  }

  @media (max-width: 1300px) {
    .header-actions {
      gap: 0.5rem;
    }
  }

  @media (max-width: 1250px) {
    .header-actions {
      gap: 0.4rem;
    }
  }

  .contact-btn {
    background: linear-gradient(90deg, #0391d0, #0eb6da);
    border: none;
    color: white;
    padding: 0.6rem 1.25rem;
    text-decoration: none;
    border-radius: 1.25rem;
    font-weight: 600;
    cursor: pointer;
    font-size: 0.9rem;
  }

  /* Contact button boyut optimizasyonu */
  @media (max-width: 1500px) {
    .contact-btn {
      padding: 0.55rem 1.1rem;
      font-size: 0.85rem;
    }
  }

  @media (max-width: 1400px) {
    .contact-btn {
      padding: 0.5rem 1rem;
      font-size: 0.8rem;
    }
  }

  @media (max-width: 1350px) {
    .contact-btn {
      padding: 0.45rem 0.9rem;
      font-size: 0.75rem;
    }
  }

  @media (max-width: 1300px) {
    .contact-btn {
      padding: 0.4rem 0.8rem;
      font-size: 0.7rem;
    }
  }

  @media (max-width: 1250px) {
    .contact-btn {
      padding: 0.35rem 0.7rem;
      font-size: 0.65rem;
    }
  }

  .lang-btn,
  .search-btn {
    border: 1px solid #97b9c0;
    border-radius: 50%;
    width: 2.4rem;
    height: 2.4rem;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #7EABB4;
    cursor: pointer;
    font-size: 0.9rem;
    background-color: transparent;
  }

  /* Lang ve Search button boyut optimizasyonu */
  @media (max-width: 1500px) {
    .lang-btn,
    .search-btn {
      width: 2.2rem;
      height: 2.2rem;
      font-size: 0.85rem;
    }
  }

  @media (max-width: 1400px) {
    .lang-btn,
    .search-btn {
      width: 2rem;
      height: 2rem;
      font-size: 0.8rem;
    }
  }

  @media (max-width: 1350px) {
    .lang-btn,
    .search-btn {
      width: 1.8rem;
      height: 1.8rem;
      font-size: 0.75rem;
    }
  }

  @media (max-width: 1300px) {
    .lang-btn,
    .search-btn {
      width: 1.6rem;
      height: 1.6rem;
      font-size: 0.7rem;
    }
  }

  @media (max-width: 1250px) {
    .lang-btn,
    .search-btn {
      width: 1.4rem;
      height: 1.4rem;
      font-size: 0.65rem;
    }
  }

  .search-btn i {
    color: #7EABB4;
    font-size: 1.25rem;
  }

  /* Search button icon boyut optimizasyonu */
  @media (max-width: 1500px) {
    .search-btn i {
      font-size: 1.1rem;
    }
  }

  @media (max-width: 1400px) {
    .search-btn i {
      font-size: 1rem;
    }
  }

  @media (max-width: 1350px) {
    .search-btn i {
      font-size: 0.9rem;
    }
  }

  @media (max-width: 1300px) {
    .search-btn i {
      font-size: 0.8rem;
    }
  }

  @media (max-width: 1250px) {
    .search-btn i {
      font-size: 0.7rem;
    }
  }

  /* === MOBİL MENÜ (YENİ TASARIM) === */
  .mobile-menu {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: #202959ab;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    opacity: 0;
    visibility: hidden;
    transform: translateX(-100%);
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    z-index: 1000;
    display: flex;
    flex-direction: column;
    overflow-y: auto;
  }

  .mobile-menu.active {
    opacity: 1;
    visibility: visible;
    transform: translateX(0);
  }

  .mobile-menu-header {
    padding: 1.5rem 2rem;
    display: flex;
    align-items: center;
    justify-content: space-between; /* Logo ve Kapat butonu için */
    flex-shrink: 0; /* Küçülmesini engelle */
  }

  .mobile-menu-logo {
    width: 7rem;
    height: auto;
    filter: brightness(0) invert(1); /* Logoyu beyaz yapar */
  }

  .mobile-menu-close-btn {
    background: transparent;
    border: none;
    color: white;
    font-size: 2.2rem;
    cursor: pointer;
    padding: 0.5rem;
    z-index: 1002;
    line-height: 1;
    transition: transform 0.3s ease, color 0.3s ease;
    position: relative;
  }

  .mobile-menu-close-btn:hover {
    transform: rotate(90deg);
    color: #00a9e0;
  }

  .mobile-menu-nav {
      flex: 1;
      flex-direction: column;
      justify-content: center; /* Linkleri dikeyde ortalar */
      padding: 1rem 1.5rem;
  }

  .mobile-navigation-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0; /* Linkler arası boşluk artık margin-bottom ile yapılıyor */
  }

  .mobile-navigation-list li a,
  .mobile-dropdown-toggle {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding: 1rem;
    font-size: 1.1rem;
    font-weight: 500;
    color: #ffffff;
    text-decoration: none;
    border: none;
    background: transparent;
    cursor: pointer;
    transition: all 0.3s ease;
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    letter-spacing: 0.3px;
    margin-bottom: 0.5rem;
  }

  .mobile-navigation-list li {
    list-style: none;
    margin: 0;
    padding: 0;
  }

  .mobile-navigation-list li a:focus,
  .mobile-dropdown-toggle:focus {
    outline: 2px solid rgba(0, 169, 224, 0.5);
    outline-offset: 2px;
  }

  .mobile-navigation-list li a:hover,
  .mobile-dropdown-toggle:hover,
  .mobile-dropdown.active .mobile-dropdown-toggle {
    color: #ffffff;
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.2);
    transform: translateX(5px);
  }

  /* === MOBİL DROPDOWN (YENİ TASARIM) === */
  .mobile-dropdown {
    position: relative;
  }

  .mobile-dropdown-toggle {
    justify-content: space-between;
  }

  .mobile-dropdown-arrow {
    font-size: 1.3rem;
    transition: transform 0.3s ease;
    line-height: 1;
  }

  .mobile-dropdown.active .mobile-dropdown-arrow {
    transform: rotate(180deg);
  }

  .mobile-dropdown-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease-in-out;
    background: rgba(0, 0, 0, 0.2);
    border-radius: 8px;
    margin-top: 0.5rem;
    padding-left: 1.5rem; /* Alt linkleri içeri almak için */
    border-left: 3px solid #00a9e0; /* Açık olduğunu belirtir */
  }

  .mobile-dropdown.active .mobile-dropdown-content {
    max-height: 300px; /* Açılacak maksimum yükseklik */
  }

  .mobile-dropdown-content a {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.8rem 1rem;
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    font-size: 1rem;
    font-weight: 400;
    transition: all 0.3s ease;
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    margin-bottom: 0.3rem;
  }

  .mobile-dropdown-content a:hover {
    color: #ffffff;
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.2);
    transform: translateX(5px);
  }

  /* === MOBİL MENÜ FOOTER (YENİ TASARIM) === */
  .mobile-menu-footer {
    padding: 1.5rem 2rem 2rem 2rem;
    margin-top: auto; /* Footer'ı dibe iter */
    flex-shrink: 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
  }

  .contact-btn-mobile {
    display: block;
    width: 95%;
    background: linear-gradient(135deg, #00a9e0, #0eb6da);
    color: white !important;
    padding: 1rem;
    border-radius: 10px;
    font-weight: 600;
    letter-spacing: 0.5px;
    text-align: center;
    text-decoration: none;
    box-shadow: 0 4px 15px rgba(0, 169, 224, 0.3);
    transition: all 0.3s ease;
    margin-bottom: 1.5rem;
  }

  .contact-btn-mobile:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0, 169, 224, 0.4);
  }

  .mobile-footer-actions {
    display: flex;
    justify-content: space-around;
    align-items: center;
  }

  .mobile-footer-actions button {
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    color: rgba(255, 255, 255, 0.8);
    cursor: pointer;
    font-weight: 500;
    font-size: 1rem;
    transition: all 0.3s ease;
    padding: 0.8rem;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .mobile-footer-actions button i {
    font-size: 1.4rem;
  }

  .mobile-footer-actions button:hover {    color: #ffffff;
      background-color: rgba(255, 255, 255, 0.1);
      border-color: rgba(255, 255, 255, 0.4);
      transform: scale(1.05);
  }

  /* === MOBİL MODAL GENEL STİLLER === */
  .mobile-modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: #202959ab;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
  }

  .mobile-modal-content {
    position: relative;
    margin: 5vh 1rem;
    border-radius: 20px;
    max-height: 90vh;
    overflow-y: auto;
    transform: translateY(50px) scale(0.9);
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  }

  .mobile-modal-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.5rem 1.5rem 1rem 1.5rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
  }

  .mobile-modal-header .mobile-modal-title {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
  }

  .mobile-modal-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #ffffff;
    margin: 0;
  }

  .mobile-modal-close {
    background: transparent;
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    cursor: pointer;
    transition: all 0.3s ease;
  }

  .mobile-modal-close:hover {
    background-color: rgba(255, 255, 255, 0.1);
    transform: rotate(90deg);
  }

  .mobile-modal-close i {
    font-size: 1.5rem;
  }

  .mobile-modal-body {
    padding: 1rem 1.5rem 2rem 1.5rem;
  }

  .mobile-modal-back {
    background: transparent;
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-right: 1rem;
  }

  .mobile-modal-back:hover {
    background-color: rgba(255, 255, 255, 0.1);
  }

  .mobile-modal-back i {
    font-size: 1.5rem;
  }

  /* === MOBİL PRODUCTS MODAL === */
  .mobile-products-modal {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 2000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  }

  .mobile-products-modal.active {
    opacity: 1;
    visibility: visible;
  }

  .mobile-products-modal.active .mobile-modal-content {
    transform: translateY(0) scale(1);
  }

  .mobile-products-categories {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-bottom: 2rem;
  }

  .mobile-products-visual {
    text-align: center;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.1);
  }

  .mobile-products-visual img {
    width: 100%;
    max-width: 200px;
    height: auto;
    object-fit: contain;
    margin-bottom: 1rem;
    filter: brightness(1.2) drop-shadow(0 4px 20px rgba(0, 0, 0, 0.2));
  }

  .mobile-visual-text {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.8);
    margin: 0;
    line-height: 1.4;
    font-style: italic;
  }

  /* === MOBİL APPLICATION AREAS MODAL === */
  .mobile-application-modal {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 2000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  }

  .mobile-application-modal.active {
    opacity: 1;
    visibility: visible;
  }

  .mobile-application-modal.active .mobile-modal-content {
    transform: translateY(0) scale(1);
  }

  .mobile-application-categories {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-bottom: 2rem;
  }

  /* === MOBİL CORPORATE MODAL === */
  .mobile-corporate-modal {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 2000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  }

  .mobile-corporate-modal.active {
    opacity: 1;
    visibility: visible;
  }

  .mobile-corporate-modal.active .mobile-modal-content {
    transform: translateY(0) scale(1);
  }

  .mobile-corporate-categories {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 2rem;
  }

  /* === MOBİL MEDIA CENTER MODAL === */
  .mobile-media-modal {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 2000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  }

  .mobile-media-modal.active {
    opacity: 1;
    visibility: visible;
  }

  .mobile-media-modal.active .mobile-modal-content {
    transform: translateY(0) scale(1);
  }

  .mobile-media-categories {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 2rem;
  }

  /* === MOBİL FILTER SUB MODAL (PRODUCTS İÇİN) === */
  .mobile-filter-sub-modal {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 2100;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  }

  .mobile-filter-sub-modal.active {
    opacity: 1;
    visibility: visible;
  }

  .mobile-filter-sub-modal .mobile-modal-content {
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    transform: translateX(100%);
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  }

  .mobile-filter-sub-modal.active .mobile-modal-content {
    transform: translateX(0);
  }



  /* === MOBİL CATEGORY SECTIONS === */
  .mobile-category-section {
    border-radius: 15px;
    padding: 1.5rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
  }

  .mobile-category-title {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 1.1rem;
    font-weight: 700;
    color: #ffffff;
    margin: 0 0 1.25rem 0;
    padding-bottom: 0.75rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  }

  .mobile-category-title i {
    color: #ffffff;
    background: rgba(255, 255, 255, 0.2);
    padding: 0.5rem;
    border-radius: 8px;
  }

  .mobile-category-items {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
  }

  .mobile-category-item {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem;
    background: transparent;
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
    font-size: 0.85rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    cursor: pointer;
    margin-bottom: 0.3rem;
  }

  .mobile-category-item:hover {
    color: #ffffff;
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.3);
    transform: translateX(5px);
  }

  .mobile-item-arrow {
    color: rgba(255, 255, 255, 0.6);
    font-size: 1.2rem;
    transition: all 0.3s ease;
  }

  .mobile-filter-tooltip a:hover {
    background: rgba(255, 255, 255, 0.4);
    transform: translateY(-2px);
  }

  /* === MOBİL BUTON ÖZELLEŞTİRMELERİ === */
  .mobile-corporate-special .mobile-dropdown-toggle:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateX(8px);
  }

  .mobile-products-special .mobile-dropdown-toggle:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateX(8px);
  }

  .mobile-application-special .mobile-dropdown-toggle:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateX(8px);
  }

  .mobile-media-special .mobile-dropdown-toggle:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateX(8px);
  }

  /* Submenu olan öğelere özel stil */
  .mobile-has-submenu {
    position: relative;
  }

  .mobile-has-submenu .mobile-item-arrow {
    color: #00a9e0 !important;
    font-size: 1.2rem;
  }

  .mobile-has-submenu:hover .mobile-item-arrow {
    transform: translateX(3px) scale(1.1);
  }

  .mobile-category-item.mobile-has-submenu {
    cursor: pointer;
  }

  .mobile-category-item.mobile-has-submenu:hover {
    background: rgba(0, 169, 224, 0.1);
    border-color: rgba(0, 169, 224, 0.3);
  }

  /* === HERO SECTION === */
  .hero-section {
    display: flex;
    align-items: center;
    padding: 5rem 8%;
    min-height: 85vh;
    position: relative;
    color: white;
    z-index: 10;
  }

  .hero-content-wrapper {
    flex-basis: 50%;
    max-width: 600px;
    z-index: 10;
    position: relative;
    margin-top: -20em;
  }

  .hero-title {
    font-size: clamp(3rem, 7vw, 5.2rem);
    color: #001B48;
    line-height: 1.15;
    margin: 0 0 2rem 0;
    position: relative;
  }

  .discover-btn {
    background: linear-gradient(90deg, #0391d0, #0eb6da);
    border: none;
    color: white;
    padding: 0.9rem 2rem;
    border-radius: 30px;
    font-weight: 600;
    cursor: pointer;
    font-size: 1rem;
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    text-decoration: none;
    transition: background-color 0.3s ease;
  }
  .discover-btn:hover {
    background-color: #009cd3;
  }
  .discover-btn .material-icons {
    font-size: 1.3em;
    line-height: 1;
  }



  /* === Info Feature Section === */
  .info-feature-section {
    background-color: #051d3b;
    color: #ffffff;
    padding: 50px 8%;
    margin: -70vh auto 0;
    border-radius: 30px;
    max-width: 1200px;
    position: relative;
    height: auto;
    min-height: 40em;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
    overflow: hidden;
  }

  .parallax-bg-element {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center 50%;
    background-repeat: no-repeat;
    background-color: #001b48;
    z-index: 0;
    will-change: background-position;
  }

  .info-feature-container {
    position: relative;
    z-index: 1;
    display: flex;
    gap: 40px;
    align-items: flex-start;
  }

  .info-feature-section .top-right-action-button {
    position: absolute;
    top: 30px;
    right: 30px;
    background-color: #00a9e0;
    border: none;
    border-radius: 12px;
    width: 44px;
    height: 44px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    transition: background-color 0.3s ease;
    z-index: 2;
  }

  .top-right-action-button img {
    width: 65%;
    height: 65%;
    object-fit: contain;
    display: block;
  }

  .top-right-action-button:hover {
    background-color: #008cba;
  }

  .info-content-area {
    flex: 3;
    margin-left: -101px;
  }

  .info-title {
    font-size: clamp(2.2rem, 5vw, 3rem);
    font-weight: 700;
    line-height: 1.25;
    margin-bottom: 25px;
    color: #ffffff;
  }

  .info-description {
    font-size: 0.95rem;
    line-height: 1.65;
    color: #cdd7e5;
    margin-bottom: 35px;
    max-width: 520px;
  }

  .info-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin-bottom: 45px;
  }

  .info-buttons .btn {
    padding: 14px 28px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
    font-size: 0.9rem;
    border: none;
  }

  .info-buttons .btn .material-icons {
    font-size: 1.3em;
  }

  .info-buttons .btn-primary-custom {
    background-color: #00a9e0;
    color: #ffffff;
  }
  .info-buttons .btn-primary-custom:hover {
    background-color: #008cba;
    transform: translateY(-2px);
  }

  .info-buttons .btn-secondary-custom {
    background-color: #c2f0f0;
    color: #051d3b;
  }
  .info-buttons .btn-secondary-custom:hover {
    background-color: #adeaea;
    transform: translateY(-2px);
  }

  .info-stats {
    display: flex;
    gap: 30px;
    padding-top: 30px;
    margin-top: 30px;
  }

  .stat-item {
    flex: 1;
    text-align: left;
    position: relative;
    padding-left: 30px;
  }

  .stat-item:not(:first-child)::before {
    content: "";
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 1px;
    height: 70%;
    background-color: rgba(255, 255, 255, 0.2);
  }

  .stat-number {
    display: block;
    font-size: clamp(2rem, 4vw, 2.8rem);
    font-weight: 700;
    color: #00a9e0;
    margin-bottom: 8px;
  }

  .stat-text {
    font-size: 0.9rem;
    color: #cdd7e5;
    line-height: 1.3;
  }

  .filter-selector-card {
    flex: 1.2;
    min-width: 280px;
    max-width: 340px;
    padding: 30px;
    border-radius: 20px;
    color: #ffffff;
    border: 1px solid rgba(191, 255, 250, 0.2);
    background-color: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(9px);
    -webkit-backdrop-filter: blur(9px);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    align-self: center;
  }

  .filter-icon-container {
    background-color: #e0f7fa;
    width: 48px;
    height: 48px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
  }

  .filter-icon-container .material-icons {
    color: #051d3b;
    font-size: 28px;
  }

  .filter-title {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 12px;
  }

  .filter-description {
    font-size: 0.9rem;
    line-height: 1.55;
    color: #cdd7e5;
  }

  /* === RESPONSIVE ADJUSTMENTS === */

  /* Büyük laptop ekranları için özel düzenlemeler */
  @media (max-width: 1700px) and (min-width: 1500px) {
    .application-areas-content {
      width: min(1450px, 88vw);
      height: auto;
      min-height: 335px;
      max-height: 395px;
      max-width: 88vw;
      transform: translateX(-10%);
    }

    .application-areas-content .products-categories {
      gap: 55px;
    }

    .application-areas-content .category-items {
      gap: 9px 38px;
      column-gap: 38px;
    }

    .application-areas-content .category-item {
      font-size: 0.85rem;
      padding: 8px 0;
    }

    .application-areas-content .item-name {
      font-size: 0.85rem;
    }
  }

  @media (max-width: 1499px) and (min-width: 1441px) {
    .products-content {
      width: min(1200px, 80vw);
      height: 420px;
      max-width: 80vw;
      gap: 26px;
      padding: 18px 26px;
      transform: translateX(-6%);
    }

    .application-areas-content {
      width: min(1350px, 85vw);
      height: auto;
      min-height: 320px;
      max-height: 380px;
      max-width: 85vw;
      gap: 26px;
      padding: 20px 28px;
      transform: translateX(-12%);
    }

    .application-areas-content .products-categories {
      gap: 50px;
    }

    .application-areas-content .category-items {
      gap: 8px 32px;
      column-gap: 32px;
    }

    .application-areas-content .category-item {
      font-size: 0.83rem;
      padding: 7px 0;
    }

    .application-areas-content .item-name {
      font-size: 0.83rem;
    }

    .dropdown:nth-child(2) .dropdown-content {
      left: max(-280px, calc(-35vw + 110px));
    }

    .dropdown:nth-child(2) .dropdown-content::before {
      left: min(330px, calc(35vw + 100px));
    }

    .dropdown:nth-child(3) .dropdown-content {
      left: max(-250px, calc(-25vw + 80px));
    }

    .dropdown:nth-child(3) .dropdown-content::before {
      left: min(300px, calc(25vw + 120px));
    }
  }

  @media (max-width: 1200px) and (min-width: 1025px) {
    .site-header, .hero-section {
      padding-left: 5%;
      padding-right: 5%;
    }
    .info-feature-section {
      padding-left: 5%;
      padding-right: 5%;
    }
    .main-nav { margin-left: 0%; gap: 1.5rem; }
    .main-nav ul { gap: 1.5rem; }
    .hero-title { font-size: clamp(2.5rem, 6vw, 4.5rem); }
  }

  /* 1360-1440px arası kritik laptop boyutları için özel düzenlemeler */
  @media (max-width: 1440px) and (min-width: 1360px) {
    .site-header {
      padding: 2rem 6%;
    }

    .header-actions {
      gap: 0.8rem;
    }

    .contact-btn {
      padding: 0.5rem 1rem;
      font-size: 0.85rem;
    }

    .lang-btn,
    .search-btn {
      width: 2.2rem;
      height: 2.2rem;
      font-size: 0.85rem;
    }

    .products-content {
      width: min(950px, 85vw);
      height: auto;
      min-height: 280px;
      max-width: 85vw;
      gap: 20px;
      padding: 18px 22px;
      transform: translateX(-18%);
    }

    .application-areas-content {
      width: min(1100px, 82vw);
      height: auto;
      min-height: 300px;
      max-height: 360px;
      max-width: 82vw;
      gap: 22px;
      padding: 16px 20px;
      transform: translateX(-17%);
    }

    .products-categories {
      gap: 30px;
    }

    .products-visual {
      margin-top: 35px;
      height: 250px;
    }

    .dropdown:nth-child(2) .dropdown-content {
      left: max(-250px, calc(-35vw + 150px));
    }

    .dropdown:nth-child(2) .dropdown-content::before {
      left: min(300px, calc(35vw + 100px));
    }

    .dropdown:nth-child(3) .dropdown-content {
      left: max(-200px, calc(-30vw + 120px));
    }

    .dropdown:nth-child(3) .dropdown-content::before {
      left: min(250px, calc(30vw + 80px));
    }

    .category-title {
      font-size: 14px;
      margin: 12px 0 14px 10px;
      letter-spacing: 0.4px;
    }

    .item-name {
      font-size: 13px;
    }

    .application-areas-content .category-items {
      gap: 8px 30px;
      column-gap: 30px;
    }

    .application-areas-content .products-categories {
      gap: 40px;
    }

    .application-areas-content .category-item {
      font-size: 0.8rem;
      padding: 6px 0;
    }

    .application-areas-content .item-name {
      font-size: 0.8rem;
    }

    .filter-tooltip {
      left: 72%;
      font-size: 10px;
      min-width: 70px;
    }

    .filter-tooltip a {
      font-size: 10px;
      padding: 2px 4px;
    }
  }

  /* 1300-1359px arası çok kritik boyutlar */
  @media (max-width: 1359px) and (min-width: 1300px) {
    .site-header {
      padding: 2rem 4%;
    }

    .header-actions {
      gap: 0.6rem;
    }

    .contact-btn {
      padding: 0.45rem 0.9rem;
      font-size: 0.8rem;
    }

    .lang-btn,
    .search-btn {
      width: 2rem;
      height: 2rem;
      font-size: 0.8rem;
    }

    .main-nav ul {
      gap: 1.3rem;
    }

    .products-content {
      width: min(800px, 80vw);
      height: auto;
      min-height: 290px;
      max-width: 80vw;
      gap: 22px;
      padding: 20px 24px;
      transform: translateX(-10%);
    }

    .application-areas-content {
      width: min(800px, 78vw);
      height: auto;
      min-height: 280px;
      max-width: 78vw;
      gap: 20px;
      padding: 15px 18px;
      transform: translateX(-12%);
    }

    .application-areas-content .products-categories {
      gap: 30px;
    }

    .application-areas-content .category-items {
      gap: 0 24px;
    }

    .products-categories {
      gap: 24px;
    }

    .products-visual {
      margin-top: 22px;
      height: 250px;
    }

    .dropdown:nth-child(2) .dropdown-content {
      left: max(-150px, calc(-26vw + 100px));
    }

    .dropdown:nth-child(2) .dropdown-content::before {
      left: min(200px, calc(26vw + 70px));
    }

    .dropdown:nth-child(3) .dropdown-content {
      left: max(-170px, calc(-28vw + 120px));
    }

    .dropdown:nth-child(3) .dropdown-content::before {
      left: min(230px, calc(28vw + 70px));
    }

    .category-title {
      font-size: 13px;
      margin: 10px 0 11px 8px;
      letter-spacing: 0.3px;
    }

    .item-name {
      font-size: 12px;
    }

    .category-item {
      padding: 1px 0;
    }

    .filter-tooltip {
      left: 68%;
      font-size: 9px;
      min-width: 65px;
    }

    .filter-tooltip a {
      font-size: 9px;
      padding: 1px 3px;
    }
  }

  /* 1200-1249px arası laptop boyutları */
  @media (max-width: 1249px) and (min-width: 1200px) {
    .products-content {
      width: min(750px, 78vw);
      height: auto;
      min-height: 280px;
      max-width: 78vw;
      gap: 20px;
      padding: 18px 22px;
      transform: translateX(-8%);
    }

    .products-categories {
      gap: 22px;
    }

    .products-visual {
      margin-top: 20px;
      height: 240px;
    }

    .dropdown:nth-child(2) .dropdown-content {
      left: max(-130px, calc(-22vw + 80px));
    }

    .dropdown:nth-child(2) .dropdown-content::before {
      left: min(180px, calc(22vw + 50px));
    }

    .application-areas-content {
      width: min(750px, 75vw);
      height: auto;
      min-height: 270px;
      max-width: 75vw;
      gap: 18px;
      padding: 15px 18px;
      transform: translateX(-10%);
    }

    .application-areas-content .products-categories {
      gap: 28px;
    }

    .application-areas-content .category-items {
      gap: 0 20px;
    }

    .dropdown:nth-child(3) .dropdown-content {
      left: max(-140px, calc(-25vw + 85px));
    }

    .dropdown:nth-child(3) .dropdown-content::before {
      left: min(190px, calc(25vw + 55px));
    }

    .category-title {
      font-size: 12px;
      margin: 8px 0 10px 6px;
      letter-spacing: 0.2px;
    }

    .item-name {
      font-size: 11px;
    }

  }

  /* 1100-1199px arası laptop boyutları */
  @media (max-width: 1199px) and (min-width: 1100px) {
    .products-content {
      width: min(650px, 75vw);
      height: auto;
      min-height: 260px;
      max-width: 75vw;
      gap: 18px;
      padding: 16px 20px;
      transform: translateX(-6%);
    }

    .products-categories {
      gap: 20px;
    }

    .products-visual {
      margin-top: 18px;
      height: 220px;
    }

    .dropdown:nth-child(2) .dropdown-content {
      left: max(-110px, calc(-20vw + 70px));
    }

    .dropdown:nth-child(2) .dropdown-content::before {
      left: min(160px, calc(20vw + 40px));
    }

    .application-areas-content {
      width: min(700px, 72vw);
      height: auto;
      min-height: 260px;
      max-width: 72vw;
      gap: 16px;
      padding: 14px 16px;
      transform: translateX(-8%);
    }

    .application-areas-content .products-categories {
      gap: 24px;
    }

    .application-areas-content .category-items {
      gap: 0 18px;
    }

    .dropdown:nth-child(3) .dropdown-content {
      left: max(-120px, calc(-22vw + 75px));
    }

    .dropdown:nth-child(3) .dropdown-content::before {
      left: min(170px, calc(22vw + 45px));
    }

    .category-title {
      font-size: 11px;
      margin: 6px 0 9px 4px;
      letter-spacing: 0.1px;
    }

    .item-name {
      font-size: 10px;
    }
  }

  /* 1025-1099px arası kompakt laptop boyutları */
  @media (max-width: 1099px) and (min-width: 1025px) {
    .products-content {
      width: min(580px, 72vw);
      height: auto;
      min-height: 230px;
      max-width: 72vw;
      gap: 14px;
      padding: 14px 16px;
      transform: translateX(-4%);
    }

    .application-areas-content {
      width: min(650px, 70vw);
      height: auto;
      min-height: 250px;
      max-width: 70vw;
      gap: 14px;
      padding: 14px 16px;
      transform: translateX(-6%);
    }

    .application-areas-content .products-categories {
      gap: 24px;
    }

    .application-areas-content .category-items {
      gap: 0 18px;
    }

    .products-categories {
      gap: 18px;
    }

    .products-visual {
      margin-top: 15px;
      height: 190px;
    }

    .dropdown:nth-child(2) .dropdown-content {
      left: max(-90px, calc(-18vw + 60px));
    }

    .dropdown:nth-child(2) .dropdown-content::before {
      left: min(140px, calc(18vw + 30px));
    }

    .dropdown:nth-child(3) .dropdown-content {
      left: max(-100px, calc(-20vw + 70px));
    }

    .dropdown:nth-child(3) .dropdown-content::before {
      left: min(150px, calc(20vw + 40px));
    }

    .category-title {
      font-size: 10px;
      margin: 4px 0 8px 2px;
      letter-spacing: 0px;
    }

    .item-name {
      font-size: 9px;
    }

    .filter-tooltip {
      left: 62%;
      font-size: 8px;
      min-width: 60px;
    }

    .filter-tooltip a {
      font-size: 8px;
      padding: 1px 2px;
    }
    .category-item{
      line-height: 2.9px;
    }
  }

  /* 1000px+ için özel düzenleme - Video ile about çakışmasını tamamen çöz */
  @media (max-width: 1024px) and (min-width: 1000px) {
    .hero-content-wrapper {
      margin-top: -12em;
    }

    .anasayfa-about {
      margin-top: 15vh !important; /* Video bitiminden sonra başlasın */
      padding: 60px 5%;
    }

    .info-feature-section {
      margin: 0 auto !important; /* Overlap yok, temiz geçiş */
    }
  }

  /* 990px'e kadar normal desktop tasarımı korunur - sadece küçük tweakler */
  @media (max-width: 990px) and (min-width: 900px) {
    .hero-content-wrapper {
      margin-top: -10em;
    }

    .anasayfa-about {
      margin-top: -25vh !important; /* Normal desktop konumu */
      padding: 60px 5%;
    }

    .info-feature-section {
      margin: -35vh auto 0 !important; /* Normal desktop overlap */
    }
  }

  /* 899px altı için tablet geçişi */
  @media (max-width: 899px) and (min-width: 769px) {
    .hero-content-wrapper {
      margin-top: -8em;
    }

    .anasayfa-about {
      margin-top: 2vh !important; /* Video ile güvenli mesafe */
      padding: 60px 5%;
    }

    .info-feature-section {
      margin: -10vh auto 0 !important; /* Minimal overlap */
    }
  }

  @media (max-width: 1024px) {
    .mobile-menu-toggle {
      display: flex;
      margin-left: auto;
    }
    .main-nav, .header-actions .lang-btn, .header-actions .search-btn, .header-actions .contact-btn { display: none; }

    /* Video ile about çakışmasını önle */
    .anasayfa-about {
      margin-top: -8vh !important; /* Güvenli overlap */
    }

    .info-feature-section {
      margin: -18vh auto 0 !important; /* Düzenlenen overlap */
    }

    /* Mobil/tablet cihazlarda parallax devre dışı ve cutout kaldır */
    .about-main-card {
      background-attachment: scroll;
      border-radius: 20px !important; /* Normal yuvarlatma */
      overflow: visible;
    }

    /* Tüm tablet ve mobil cihazlarda cutout kaldır */
    .about-main-card::before {
      display: none !important;
    }

    /* Tablet ve mobilde mavi arka planı JavaScript ile kontrol edilecek */
    .anasayfa-about-bg {
      background-color: #008ace;
      z-index: 1;
      position: absolute;
      left: 0;
      width: 100%;
      /* JavaScript ile top, height ve display ayarlanacak */
    }

    .dropdown-content {
      min-width: 280px;
      max-width: 320px;
      grid-template-columns: 1fr;
      padding: 16px;
      left: 0;
    }

    .dropdown:nth-child(2) .dropdown-content {
      left: 0;
    }

    .dropdown:nth-child(3) .dropdown-content {
      left: 0;
    }

    /* Mobil ekranlarda ok işaretlerini gizle */
    .dropdown-content::before,
    .dropdown:nth-child(2) .dropdown-content::before,
    .dropdown:nth-child(3) .dropdown-content::before,
    .corporate-dropdown .corporate-content::before {
      display: none;
    }

    .mega-menu-visual {
      display: none;
    }

    .products-content {
      min-width: 350px;
      max-width: 400px;
      grid-template-columns: 1fr;
      gap: 20px;
      padding: 20px;
    }

    .application-areas-content {
      min-width: 380px;
      max-width: 450px;
      grid-template-columns: 1fr;
      gap: 18px;
      padding: 20px;
    }

    .application-areas-content .products-categories {
      gap: 25px;
    }

    .application-areas-content .category-items {
      gap: 0 15px;
    }

    .products-categories {
      grid-template-columns: 1fr;
      gap: 25px;
    }

    .products-visual {
      display: none;
    }

    .filter-tooltip {
      left: 60%;
      font-size: 9px;
      margin-top: 3px;
    }

    .filter-tooltip a {
      font-size: 9px;
      padding: 1px 2px;
      white-space: nowrap;
    }



    .corporate-dropdown .corporate-content {
      width: 280px;
      height: auto;
      left: -120px;
      right: auto;
      max-width: calc(100vw - 40px);
      grid-template-columns: 1fr;
      padding: 16px;
      gap: 0;
    }

    .corporate-dropdown .corporate-content::before {
      left: 140px;
    }

    .media-dropdown .media-content {
      width: 280px;
      height: auto;
      left: -120px;
      right: auto;
      max-width: calc(100vw - 40px);
      grid-template-columns: 1fr;
      padding: 16px;
      gap: 0;
    }

    .media-dropdown .media-content::before {
      left: 140px;
    }
    .site-header { align-items: center; padding: 1.5rem 5%; gap: 1rem; }
    .hero-section { justify-content: flex-start; text-align: left; padding: 6rem 5% 4rem 5%; min-height: 40vh; }
    .hero-content-wrapper { flex-basis: 100%; width: auto; max-width: 90%; display: block;margin-top: -40%; }

    .info-feature-section {
      padding: 40px 5%;
      min-height: auto;
    }
    .info-feature-container { flex-direction: column; align-items: center; gap: 30px; }
    .info-content-area {
      width: 100%;
      max-width: 600px;
      text-align: center;
      margin-left: 0;
    }
    .info-description { max-width: 100%; }
    .info-buttons { justify-content: center; }
    .info-stats { justify-content: space-around; width: 100%; gap: 20px; }
    .stat-item { text-align: center; padding-left: 0; }
    .stat-item:not(:first-child)::before { display: none; }
    .filter-selector-card { width: 100%; max-width: 450px; margin-top: 20px; align-self: stretch; }

    .info-feature-section .top-right-action-button {
      top: 20px;
      right: 20px;
    }
  }

  @media (max-width: 768px) {
    .hero-media-wrapper {
      height: 60vh;
      width: 100%;
    }

    .hero-media-wrapper video {
      object-fit: cover;
      object-position: 70% 30%;
      /* Mobilde videoyu daha iyi odakla - sağa kaydırılmış */
      width: 100%;
      height: 100%;
      min-width: 100%;
      min-height: 100%;
    }

    /* Video ile about çakışmasını önle */
    .anasayfa-about {
      margin-top: 0vh !important; /* Video bitiminden sonra başlasın */
    }

    .info-feature-section {
      margin: -5vh auto 0 !important; /* Hafif overlap ama çakışmasın */
    }

    .site-header { padding: 1rem 5%; gap: 0.8rem; }
    .contact-btn { padding: 0.5rem 1rem; font-size: 0.8rem; }
    .hero-section { padding: 5rem 5% 3rem 5%; min-height: auto; }
    .hero-content-wrapper { flex-basis: 100%; margin-top: 1rem; }
    .hero-title { font-size: clamp(2rem, 9vw, 3rem); margin-bottom: 1.5rem; }
    .discover-btn { padding: 0.8rem 1.5rem; font-size: 0.9rem; }

    .corporate-dropdown .corporate-content {
      left: -60px;
      width: 260px;
      max-width: calc(100vw - 20px);
    }

    .corporate-dropdown .corporate-content::before {
      left: 80px;
    }

    .media-dropdown .media-content {
      left: -60px;
      width: 260px;
      max-width: calc(100vw - 20px);
    }

    .media-dropdown .media-content::before {
      left: 80px;
    }

    .products-content {
      min-width: 280px;
      max-width: calc(100vw - 20px);
      padding: 15px;
      gap: 15px;
    }

    .application-areas-content {
      min-width: 320px;
      max-width: calc(100vw - 20px);
      padding: 15px;
      gap: 15px;
    }

    .application-areas-content .products-categories {
      gap: 20px;
    }

    .application-areas-content .category-items {
      gap: 0 12px;
    }

    .products-categories {
      gap: 20px;
    }

    .category-title {
      font-size: 12px;
      margin: 6px 0 10px 4px;
      letter-spacing: 0.2px;
    }

    .category-items {
      gap: 0;
    }

    .category-item {
      padding: 1px 0;
      font-size: 0.7rem;
    }

    .item-name {
      font-size: 11px;
    }

    .filter-tooltip {
      left: 55%;
      font-size: 8px;
      margin-top: 2px;
    }

    .filter-tooltip a {
      font-size: 8px;
      padding: 1px 2px;
      white-space: nowrap;
    }


    .info-feature-section {
      padding: 30px 5%;
      border-radius: 20px;
    }
    .info-title { font-size: clamp(1.8rem, 6vw, 2.2rem); }
    .info-description { font-size: 0.9rem; }
    .info-buttons .btn { padding: 12px 22px; font-size: 0.85rem; width: 100%; justify-content: center; }
    .info-buttons .btn + .btn { margin-top: 10px; }
    .info-stats { flex-direction: column; gap: 25px; align-items: center; margin-top: 25px; padding-top: 25px; border-top: 1px solid rgba(255, 255, 255, 0.1); }
    .stat-item { padding-left: 0; width: 100%; max-width: 280px; }
    .stat-number { font-size: clamp(1.8rem, 5vw, 2.2rem); }
    .stat-text { font-size: 0.85rem; }
    .filter-selector-card { padding: 25px; }
    .filter-title { font-size: 1.2rem; }
  }

  /* Tablet boyutları için video optimizasyonu */
  @media (max-width: 1024px) and (min-width: 769px) {
    .hero-media-wrapper {
      height: 70vh;
    }

    .hero-media-wrapper video {
      object-position: 70% 40%;
    }
  }

  /* Küçük tablet ve büyük telefon */
  @media (max-width: 768px) and (min-width: 481px) {
    .hero-media-wrapper {
      height: 55vh;
    }

    .hero-media-wrapper video {
      object-position: 70% 35%;
    }
  }

  @media (max-width: 480px) {
    /* Çok küçük ekranlar için video */
    .hero-media-wrapper {
      height: 50vh;
    }

    .hero-media-wrapper video {
      object-position: 70% 25%;
      /* Daha agresif crop küçük ekranlarda - sağa kaydırılmış */
    }

    /* Çok küçük ekranlarda video ile about arasındaki çakışmayı önle */
    .anasayfa-about {
      margin-top: 10vh !important; /* Video (50vh) sonrasında güvenli mesafe */
    }

    .info-feature-section {
      margin: 5vh auto 0 !important; /* Pozitif margin ile güvenli alan */
    }

    .corporate-dropdown .corporate-content {
      left: -20px;
      width: 240px;
      max-width: calc(100vw - 10px);
    }

    .corporate-dropdown .corporate-content::before {
      left: 40px;
    }

    .media-dropdown .media-content {
      left: -20px;
      width: 240px;
      max-width: calc(100vw - 10px);
    }

    .media-dropdown .media-content::before {
      left: 40px;
    }

    .products-content {
      min-width: 260px;
      max-width: calc(100vw - 10px);
      padding: 12px;
      gap: 12px;
    }

    .application-areas-content {
      min-width: 300px;
      max-width: calc(100vw - 10px);
      padding: 12px;
      gap: 12px;
    }

    .application-areas-content .products-categories {
      gap: 15px;
    }

    .application-areas-content .category-items {
      gap: 0 10px;
    }

    .products-categories {
      gap: 15px;
    }

    .category-title {
      font-size: 11px;
      margin: 2px 0 8px -8px;
      padding-bottom: 4px;
      letter-spacing: 0.1px;
    }

    .category-items {
      gap: 0;
    }

    .category-item {
      padding: 1px 0;
      font-size: 0.65rem;
    }

    .item-name {
      font-size: 10px;
    }

    .filter-tooltip {
      left: 50%;
      font-size: 7px;
      margin-top: 1px;
    }

    .filter-tooltip a {
      font-size: 7px;
      padding: 1px;
      white-space: nowrap;
    }

  }

  /* === ANASAYFA ABOUT SECTION === */
  .anasayfa-about {
    padding: 80px 5%;
    margin-top: -25vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    min-height: 100vh;
    overflow: hidden;
    background-color: #f0f9ff;
  }

  /* Bu blok duplike olduğu için kaldırıldı - Yukarıdaki modern CSS kuralları tüm durumları kapsıyor */

  .about-container {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 1650px;
  }

  .about-main-card {
    position: relative;
    background-color: rgb(0, 27, 72);
    background-image: url('../img/kutu-walpaper.png');
    background-repeat: repeat;
    background-position: center 80%;
    background-attachment: fixed; /* Parallax efekti */
    background-size: cover; /* Parallax için daha iyi görünüm */
    /* Kesikli tasarıma uygun köşe yuvarlatma: tüm köşeler yuvarlatılmış */
    border-top-left-radius: 27px !important;
    border-top-right-radius: 27px !important;
    border-bottom-left-radius: 27px !important;
    border-bottom-right-radius: 27px !important;

    padding: 80px 60px;
    height: 38em;
    overflow: hidden; /* Kesik efekti için gerekli */
    /* Mavi kesikle birebir yapışık olması için */
    margin-bottom: 0;
  }
  .about-btn.primary-btn{text-decoration: none;}
  .about-btn.play-btn {text-decoration: none;}
  /* === KESİK (CUTOUT) EFEKTİ === */
  .about-main-card::before {
    content: '';
    position: absolute;
    top: -1px; /* Kenar yumuşatma için */
    right: -1px;
    width: 38%;
    height: 35%;
    background-color: #f0f9ff;
    border-bottom-left-radius: 40px; /* Kesik köşe yuvarlaklığını geri ekliyorum */
    border-top-right-radius: 27px; /* Ana kartın sağ üst köşesine uygun */
    z-index: 1;
  }

  .about-content-grid {
    position: relative;
    z-index: 2; /* İçeriğin kesiğin üstünde kalması için */
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 60px;
    align-items: center; /* Sütunları dikey olarak ortalar */
  }

  /* === SOL TARAF === */
  .about-left-content {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 600px;
    padding-top: 40px;
    padding-bottom: 40px;
    /* Sağ üst köşeyi yuvarla - kesikli tasarıma uygun */
    border-top-right-radius: 27px;
  }

  .about-text-section {
    margin-top: 0;
  }

  .about-text-section .about-title {
    color: white;
    font-size: 2.7rem;
    font-weight: 600;
    line-height: 1.25;
    margin: 0 0 20px 0;
  }

  .about-text-section .about-description {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.95rem;
    line-height: 1.6;
    max-width: 450px;
    margin: 0 0 35px 0;
  }

  .about-buttons { display: flex; align-items: center; gap: 15px; margin-top: 55px; }
  .about-btn { display: inline-flex; align-items: center; gap: 8px; border: none; cursor: pointer; padding: 12px 28px; border-radius: 50px; font-weight: 600; font-size: 0.9rem; transition: all 0.3s ease; }
  .about-btn .material-icons { font-size: 1.2rem; }
  .about-btn.primary-btn { background: linear-gradient(90deg, #0391d0, #0eb6da); color: white; }
  .about-btn.primary-btn:hover { background: #0095c7; transform: translateY(-2px); }
  .about-btn.play-btn { background: #dcfce7; color: #001b48; }
  .about-btn.play-btn:hover { background: #cbf7da; transform: translateY(-2px); }

  .about-stats {
    display: flex;
    align-items: center;
    gap: 50px;
    max-width: 500px;
    margin-top: -30px;
  }
  .stat-item {
    position: relative;
    padding: 0;
    width: 120px;
    text-align: left;
  }
  .stat-item:not(:first-child)::before {
      content: '';
      position: absolute;
      left: -32px;
      top: 6%;
      transform: translateY(-50%);
      width: 1px;
      height: 134px;
      background: rgba(255, 255, 255, 0.3);
  }
  .stat-number {
    color: #008ace;
    font-size: 2.6rem;
    font-weight: 100;
    margin-bottom: 5px;
  }
  .stat-label {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
  }

  /* === SAĞ TARAF (FİLTRE KARTI) === */
  .about-right-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-height: 600px;
  }
    .filter-card-content {
      background: #008ace5e;
      border-radius: 7px;
      padding: 25px;
      position: relative;
      overflow: hidden;
      width: 100%;
      max-width: min(370px, calc(100vw - 40px));
      min-width: 280px;
      height: 265px;
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 15px;
      align-items: stretch;
      margin-top: 232px;
      margin-left: auto;
      margin-right: auto;
      box-shadow: 0 8px 32px rgba(0, 138, 206, 0.2),
                  0 4px 16px rgba(0, 138, 206, 0.1);
    }

    .filter-card-content::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      bottom: 0;
      background-image: url('../img/kutu-walpaper.png');
      background-repeat: repeat;
      background-position: center 40%;
      filter: blur(9px);
      z-index: -1;
    }

  /* Sol sütun - metin içerikleri */
  .filter-card-left {
    display: flex;
    flex-direction: column;
    justify-content: space-between; /* İçeriği dikeyde dağıtarak butonu aşağıya iter */
    position: relative;
    z-index: 2;
    margin-top: -2em;
  }

  /* Sağ sütun - animasyon */
  .filter-card-right {
    display: flex;
    align-items: center; /* Animasyonu dikeyde ortalar */
    justify-content: center; /* Animasyonu yatayda ortalar */
    position: relative;
    width: 250px;
    height: 250px;
    z-index: 2;
  }

  /* Lottie Player animasyonu normal flow'da */
  .filter-card-content lottie-player {
    width: 220px !important;
    height: 220px !important;
    opacity: 0.9;
  }

  .filter-card-header {
    width: 100%;
    margin-bottom: 0;
  }

  .filter-card-title {
    color: white;
    font-size: 1.8rem;
    line-height: 1.25;
    width:100%;
    font-weight: 600;
    margin-bottom: 12px;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.5);
  }

  .filter-card-icon img {
    width: 50px;
    height: auto;
    margin-top: -5px;
  }

  .filter-card-description {
      color: rgba(255, 255, 255, 0.9);
      font-size: 0.8rem;
      line-height: 2.6;
      margin-bottom: 0;
      width: 100%;
      text-shadow: 0 1px 4px rgba(0, 0, 0, 0.4);
  }

  .filter-card-btn {
      background: #008ace;
      color: #001b48;
      width: 38px;
      height: 38px;
      /* border-radius: 10px; */
      border: none;
      cursor: pointer;
      display: flex;
      align-items: center;
      justify-content: center;
      transition: transform 0.3s ease;}

  .filter-card-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(220, 252, 231, 0.3);
  }

  .filter-card-btn .material-icons {
    font-size: 1.1rem;
    text-shadow: none;
    position: relative;
    z-index: 3;
  }

  /* === FLOATING ACTION BUTTON === */
  .floating-action-btn {
      position: absolute;
      bottom: 18px;
      right: -3px;
          width: 55px;
      height: 55px;
      background: #00a9e0;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      color: white;
      cursor: pointer;
      box-shadow: 0 10px 30px -5px rgba(0, 169, 224, 0.6);
      transition: all 0.3s ease;
      transform: translateX(-50%);
      z-index: 3;
  }

  .floating-action-btn:hover { transform: translateX(-50%) translateY(-2px); box-shadow: 0 12px 35px -5px rgba(0, 169, 224, 0.7); }

  .floating-action-btn .material-icons,
  .floating-action-btn i {
    text-shadow: none;
    font-size: 1.5rem;
    z-index: 4;
  }

  /* Material Icons Genel Koruma */
  .material-icons {
    font-family: 'Material Icons';
    font-weight: normal;
    font-style: normal;
    font-size: 1rem;
    line-height: 1;
    letter-spacing: normal;
    text-transform: none;
    display: inline-block;
    white-space: nowrap;
    word-wrap: normal;
    direction: ltr;
    -webkit-font-feature-settings: 'liga';
    -webkit-font-smoothing: antialiased;
  }

  /* === RESPONSIVE === */

  /* 1000px-1200px arası tüm ekranlar için tutarlı davranış */
  @media (max-width: 1200px) and (min-width: 1000px) {
    .about-content-grid {
      gap: 30px;
    }

    .filter-card-content {
      max-width: 320px;
      min-width: 280px;
      padding: 20px;
      height: auto;
      min-height: 240px;
      margin-top: 180px;
    }

    .filter-card-content lottie-player {
      width: 180px !important;
      height: 180px !important;
    }

    .filter-card-title {
      font-size: 1.6rem;
    }

    .filter-card-description {
      font-size: 0.75rem;
      line-height: 1.4;
    }
  }

  /* Tablet boyutları - Layout korunur, sadece boyutlar küçülür */
  @media (max-width: 1200px) and (min-width: 769px) {
    .anasayfa-about {
      padding: 70px 5%;
      margin-top: -15vh; /* Video ile çakışmaması için biraz azaltıldı */
    }

    .about-main-card {
      padding: 60px 40px;
      height: auto;
      min-height: 35em;
    }

    .about-content-grid {
      gap: 40px;
    }

    .about-left-content {
      min-height: 500px;
      padding-top: 30px;
      padding-bottom: 30px;
    }

    .about-text-section .about-title {
      font-size: 2.2rem;
    }

    .about-text-section .about-description {
      font-size: 0.9rem;
      max-width: 400px;
    }

    .about-stats {
      gap: 35px;
    }

    .stat-number {
      font-size: 2.2rem;
    }

    /* Filter kartını sabit tut - responsive değişiklik yok */

    .floating-action-btn {
      width: 50px;
      height: 50px;
      bottom: 15px;
    }
  }
  @media screen and  (max-width: 769px) {
    .filter-card-content {
      margin-top: 10px !important;
    }

  }

  /* 1024px'den sonra layout değişimi - right content aşağıya */
  @media (max-width: 1024px) {
    .about-content-grid {
      display: flex;
      flex-direction: column;
      gap: 25px;
    }

    .about-left-content {
      min-height: auto;
      padding: 0;
      order: 1;
    }

    .about-right-content {
      order: 2;
      min-height: auto;
      display: flex;
      justify-content: center;
    }

    .about-text-section .about-title {
      text-align: center;
    }

    .about-text-section .about-description {
      text-align: center;
      max-width: 100%;
    }

    .about-buttons {
      justify-content: center;
    }

    .about-stats {
      justify-content: center;
      align-items: center;
      gap: 25px;
      margin: 30px auto 0 auto;
      padding-top: 25px;
      border-top: 1px solid rgba(255, 255, 255, 0.2);
      width: 100%;
      max-width: 600px;
    }

    .stat-item {
      text-align: center;
      padding: 0;
    }

    .stat-item:not(:first-child)::before {
      display: none;
    }

    .filter-card-content {
      margin-top: 10px !important;
      max-width: min(370px, calc(100vw - 40px));
      min-width: 280px;
      height: auto;
      min-height: 240px;
      padding: 25px;
    }
  }

  /* Küçük tablet boyutları - Layout hala korunur */
  @media (max-width: 768px) and (min-width: 481px) {
    .anasayfa-about {
      padding: 50px 5%;
      margin-top: 2vh !important;
    }

    .info-feature-section {
      margin: -8vh auto 0 !important;
    }

    .about-main-card {
      padding: 40px 25px;
      height: auto;
      min-height: auto;
      border-radius: 20px !important; /* Cutout yerine normal yuvarlatma */
      overflow: visible;
    }

    /* Tablet boyutunda da cutout kaldır */
    .about-main-card::before {
      display: none !important;
    }

    .about-text-section .about-title {
      font-size: 2rem;
      text-align: center;
    }

    .about-text-section .about-description {
      font-size: 0.9rem;
      max-width: 100%;
      text-align: center;
    }

    .about-buttons {
      justify-content: center;
      gap: 15px;
    }

    .about-stats {
      justify-content: center;
      gap: 25px;
      margin-top: 30px;
      padding-top: 25px;
      border-top: 1px solid rgba(255, 255, 255, 0.2);
    }

    .stat-item {
      text-align: center;
      padding: 0;
    }

    .stat-item:not(:first-child)::before {
      display: none;
    }

    .stat-number {
      font-size: 2rem;
    }

    .stat-label {
      font-size: 0.85rem;
    }

    /* Filter kartını sabit tut - responsive değişiklik yok */

    .floating-action-btn {
      display: none; /* Tablet boyutunda da gizle */
    }
  }

  /* Mobil boyutlar - Tamamen yeniden tasarlanmış */
  @media (max-width: 480px) {
    .anasayfa-about {
      padding: 40px 0;
      margin-top: 5vh;
      background-color: #f0f9ff;
    }

    .info-feature-section {
      margin: 0 auto;
    }

    .anasayfa-about-bg {
      display: none; /* Mobilde arka plan rengini kaldır */
    }

    .about-container {
      padding: 0 20px;
    }

    .about-main-card {
      padding: 30px 20px;
      height: auto;
      min-height: auto;
      background-attachment: scroll;
      background-size: cover;
      border-radius: 20px !important; /* Mobilde normal yuvarlatma */
      overflow: visible; /* Cutout için gerekmez artık */
    }

    /* Mobilde cutout efektini tamamen kaldır */
    .about-main-card::before {
      display: none !important;
    }

    .about-content-grid {
      display: flex;
      flex-direction: column;
      gap: 25px;
    }

    .about-left-content {
      min-height: auto;
      padding: 0;
      order: 1;
    }

    .about-right-content {
      order: 2;
      min-height: auto;
      display: flex;
      justify-content: center;
    }

    .about-text-section .about-title {
      font-size: 1.8rem;
      margin-bottom: 15px;
      text-align: center;
    }

    .about-text-section .about-description {
      font-size: 0.9rem;
      max-width: 100%;
      margin-bottom: 25px;
      text-align: center;
    }

    .about-buttons {
      justify-content: center;
      flex-wrap: wrap;
      gap: 12px;
      margin-top: 25px;
    }

    .about-btn {
      justify-content: center;
      padding: 12px 24px;
      font-size: 0.9rem;
      min-width: 140px;
    }

    .about-stats {
      justify-content: center;
      flex-wrap: wrap;
      gap: 20px;
      text-align: center;
      margin-top: 30px;
      padding-top: 25px;
      border-top: 1px solid rgba(255, 255, 255, 0.2);
    }

    .stat-item {
      width: auto;
      text-align: center;
      padding: 0;
      min-width: 80px;
    }

    .stat-item:not(:first-child)::before {
      display: none;
    }

    .stat-number {
      font-size: 1.8rem;
    }

    .stat-label {
      font-size: 0.8rem;
    }

    /* Mobilde filter kartını sabit tut - sadece margin-top ayarla */
    .filter-card-content {
      margin-top: 10px !important;
    }

    /* Floating action button mobilde farklı konumda */
    .floating-action-btn {
      display: none; /* Mobilde gizle, çok karışık oluyor */
    }
  }

  .floating-action-btn:hover { transform: translateX(-50%) translateY(-2px); box-shadow: 0 12px 35px -5px rgba(0, 169, 224, 0.7); }

  .floating-action-btn .material-icons,
  .floating-action-btn svg {
    transition: transform 0.4s cubic-bezier(0.2, 0.8, 0.2, 1);
  }

  .material-icons {
      font-family: 'Material Icons';
      font-weight: normal;
      font-style: normal;
      font-size: 24px;  /* Preferred icon size */
      display: inline-block;
      line-height: 1;
      text-transform: none;
      letter-spacing: normal;
      word-wrap: normal;
      white-space: nowrap;
      direction: ltr;

      /* Support for all WebKit browsers. */
      -webkit-font-smoothing: antialiased;
      /* Support for Safari and Chrome. */
      text-rendering: optimizeLegibility;

      /* Support for Firefox. */
      -moz-osx-font-smoothing: grayscale;

      /* Support for IE. */
      font-feature-settings: 'liga';
  }

  /* === Anasayfa Product Section === */
  .anasayfa-product {
    background-color: #008ACE;
    overflow: hidden;
    padding: clamp(40px, 6vw, 80px) clamp(20px, 5vw, 40px);
  }

  .anasayfa-product-container {
    max-width: 1440px;
    margin: 0 auto;
    border: 1px solid rgba(222, 255, 251, 0.3);
    border-radius: clamp(20px, 3vw, 39px);
    padding: clamp(30px, 5vw, 60px) clamp(20px, 4vw, 40px);
    position: relative;
    transition: all 0.3s ease;
  }

  .anasayfa-product-header {
    text-align: center;
    color: #fff;
    margin-bottom: clamp(25px, 4vw, 40px);
    position: relative;
    z-index: 2;
  }

  .anasayfa-product-title {
    font-size: clamp(1.8rem, 4vw, 2.5rem);
    font-weight: 100;
    margin: 0 0 15px 0;
    line-height: 1.2;
  }

  .anasayfa-product-subtitle {
    font-size: clamp(0.9rem, 1.5vw, 1rem);
    max-width: 550px;
    margin: 0 auto;
    line-height: 1.6;
    opacity: 0.9;
  }

  .anasayfa-product-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(300px, 100%), 1fr));
    gap: clamp(15px, 3vw, 30px);
    position: relative;
    z-index: 2;
    justify-items: center;
  }

  .product-card-item {
    background-color: #E5FBFD;
    border: 1px solid #eafcff;
    border-radius: clamp(16px, 2vw, 24px);
    padding: clamp(20px, 3vw, 30px);
    width: 100%;
    max-width: 640px;
    min-width: 280px;
    box-sizing: border-box;
    position: relative;
    overflow: hidden;
    color: #001d55;
    transition: all 0.3s ease-out;
    aspect-ratio: 1.2 / 1;
    min-height: clamp(300px, 40vw, 463px);
  }

  .product-card-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border-color: #d0f5ff;
  }

  .product-card-item-icon {
    font-size: clamp(1.5rem, 3vw, 2rem);
    font-weight: 300;
    color: #008ace;
    position: absolute;
    top: clamp(20px, 3vw, 30px);
    left: clamp(20px, 3vw, 30px);
    z-index: 1;
  }

  .product-card-item-title {
    font-size: clamp(1.5rem, 3.5vw, 2.25rem);
    font-weight: 100;
    margin: 0;
    position: absolute;
    top: clamp(45px, 6vw, 65px);
    left: clamp(35px, 5vw, 52px);
    z-index: 1;
    color: #fff;
    line-height: 1.1;
    max-width: 60%;
  }

  .product-card-item-image {
    position: absolute;
    inset: 0;
    z-index: 0;
    pointer-events: none;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-color: #001b48;
    background-blend-mode: soft-light;
    transition: transform 0.6s ease, opacity 0.4s ease, background-color 0.4s ease;
    transform: scale(1.05);
    opacity: 0.9;
  }

  .product-card-item-image::before,
  .product-card-item-image::after {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    transition: opacity 0.4s ease, transform 0.6s ease;
    opacity: 0.7;
  }

  .product-card-item-image::before {
    background: radial-gradient(circle at 35% 30%, rgba(255, 255, 255, 0.35), rgba(0, 27, 72, 0.15));
    mix-blend-mode: screen;
  }

  .product-card-item-image::after {
    inset: -12%;
    background: radial-gradient(circle at 50% 50%, rgba(0, 27, 72, 0.2), rgba(0, 27, 72, 0.85));
    mix-blend-mode: multiply;
    transform: scale(1.05);
  }

  .product-card-item:hover .product-card-item-image {
    transform: scale(1);
    background-color: transparent;
    opacity: 1;
  }

  .product-card-item:hover .product-card-item-image::before {
    opacity: 0.89;
  }

  .product-card-item:hover .product-card-item-image::after {
    opacity: 0.89;
    transform: scale(1);
  }

  /* === ANASAYFA PRODUCT RESPONSIVE OPTIMIZASYONLARI === */

  /* Büyük ekranlar için ek optimizasyon */
  @media (min-width: 1700px) {
    .anasayfa-product-container {
      max-width: 1440px;
    }

    .anasayfa-product-cards {
      gap: 40px;
    }

    .product-card-item {
      max-width: 720px;
    }
  }

  /* Desktop ve Laptop optimizasyonu - mevcut tasarımı korur */
  @media (max-width: 1699px) and (min-width: 1024px) {
    .anasayfa-product-container {
      max-width: 1440px; /* Kullanıcının belirlediği değer korunuyor */
    }

    /* Tarımsal filtre görselinin yeni pozisyonu korunuyor */
    #agricultural-card .product-card-item-image img {
      bottom: -5%; /* Kullanıcının belirlediği değer korunuyor */
    }
  }

  /* Geniş ekranlar */
  @media (max-width: 1699px) and (min-width: 1200px) {
    .anasayfa-product-cards {
      grid-template-columns: repeat(2, 1fr);
      gap: clamp(20px, 3vw, 35px);
      max-width: 1400px;
      margin: 0 auto;
    }
  }

  /* Laptop boyutları */
  @media (max-width: 1199px) and (min-width: 900px) {
    .anasayfa-product {
      padding: clamp(30px, 5vw, 60px) clamp(15px, 4vw, 30px);
    }

    .anasayfa-product-container {
      padding: clamp(25px, 4vw, 50px) clamp(15px, 3vw, 30px);
    }

    .anasayfa-product-cards {
      grid-template-columns: repeat(2, 1fr);
      gap: clamp(15px, 2.5vw, 25px);
    }

    .product-card-item {
      min-height: clamp(280px, 35vw, 400px);
    }

    .product-card-item-title {
      font-size: clamp(1.3rem, 3vw, 2rem);
      max-width: 65%;
    }
  }

  /* Tablet boyutları - Laptop tasarımından güvenli geçiş */
  @media (max-width: 1023px) and (min-width: 600px) {
    .anasayfa-product {
      padding: clamp(30px, 5vw, 60px) clamp(15px, 4vw, 30px);
    }

    .anasayfa-product-container {
      max-width: 900px;
      padding: clamp(25px, 4vw, 50px) clamp(20px, 3vw, 35px);
    }

    .anasayfa-product-cards {
      grid-template-columns: 1fr;
      gap: clamp(20px, 4vw, 35px);
      max-width: 600px;
      margin: 0 auto;
    }

    .product-card-item {
      max-width: 100%;
      min-height: clamp(300px, 50vw, 400px);
      aspect-ratio: 1.3 / 1;
    }

    .product-card-item-title {
      font-size: clamp(1.5rem, 4.5vw, 2rem);
      max-width: 65%;
    }

    /* Endüstriyel filtre tablet optimizasyonu */
    #industrial-card .product-card-item-image img {
      height: 95%;
      right: clamp(-55%, -14vw, -40%);
      bottom: -28%;
    }

    /* Tarımsal filtre tablet optimizasyonu - laptop tasarımından uyarlama */
    #agricultural-card .product-card-item-image img {
      height: clamp(70%, 25vw, 85%);
      right: clamp(-22%, -6vw, -16%);
      bottom: -2%; /* Laptop tasarımına yakın konum */
    }
  }

  /* Mobil boyutlar - Tablet tasarımından güvenli geçiş */
  @media (max-width: 599px) {
    .anasayfa-product {
      padding: 35px 20px;
    }

    .anasayfa-product-container {
      max-width: 100%;
      padding: 30px 20px;
      border-radius: 20px;
      margin: 0 10px;
    }

    .anasayfa-product-title {
      font-size: clamp(1.6rem, 7vw, 2.2rem);
      margin-bottom: 12px;
    }

    .anasayfa-product-subtitle {
      font-size: clamp(0.9rem, 3.5vw, 1rem);
      margin-bottom: 25px;
    }

    .anasayfa-product-cards {
      grid-template-columns: 1fr;
      gap: 25px;
      max-width: 100%;
    }

    .product-card-item {
      max-width: 100%;
      min-height: 320px;
      aspect-ratio: 1.25 / 1;
      padding: 25px;
    }

    .product-card-item-icon {
      font-size: clamp(1.4rem, 4vw, 1.6rem);
      top: 25px;
      left: 25px;
    }

    .product-card-item-title {
      font-size: clamp(1.4rem, 6vw, 1.8rem);
      top: 50px;
      left: 40px;
      max-width: 70%;
      line-height: 1.15;
    }

    /* Endüstriyel filtre mobil optimizasyonu */
    #industrial-card .product-card-item-image img {
      height: 85%;
      right: clamp(-45%, -10vw, -30%);
      bottom: -22%;
    }

    /* Tarımsal filtre mobil optimizasyonu - laptop tasarımından uyarlama */
    #agricultural-card .product-card-item-image img {
      height: clamp(60%, 20vw, 75%);
      right: clamp(-18%, -4vw, -12%);
      bottom: 2%; /* Laptop tasarımına uygun konum */
    }

    .product-card-item:hover .product-card-item-image img {
      transform: scale(1.03) translateX(-8px) translateY(-8px);
    }
  }

  /* Çok küçük mobil ekranlar - Mobil tasarımından güvenli geçiş */
  @media (max-width: 400px) {
    .anasayfa-product {
      padding: 30px 15px;
    }

    .anasayfa-product-container {
      padding: 25px 15px;
      margin: 0 5px;
    }

    .anasayfa-product-title {
      font-size: clamp(1.4rem, 8vw, 1.8rem);
      margin-bottom: 10px;
    }

    .anasayfa-product-subtitle {
      font-size: clamp(0.85rem, 4vw, 0.95rem);
      margin-bottom: 20px;
    }

    .anasayfa-product-cards {
      gap: 20px;
    }

    .product-card-item {
      min-height: 280px;
      aspect-ratio: 1.2 / 1;
      padding: 20px;
    }

    .product-card-item-icon {
      font-size: clamp(1.2rem, 5vw, 1.4rem);
      top: 20px;
      left: 20px;
    }

    .product-card-item-title {
      font-size: clamp(1.2rem, 7vw, 1.5rem);
      top: 45px;
      left: 35px;
      max-width: 75%;
      line-height: 1.1;
    }

    /* Endüstriyel filtre küçük mobil optimizasyonu */
    #industrial-card .product-card-item-image img {
      height: 80%;
      right: clamp(-35%, -8vw, -20%);
      bottom: -18%;
    }

    /* Tarımsal filtre küçük mobil optimizasyonu - laptop tasarımından uyarlama */
    #agricultural-card .product-card-item-image img {
      height: clamp(55%, 18vw, 70%);
      right: clamp(-12%, -3vw, -8%);
      bottom: 5%; /* Laptop tasarımına uygun konum */
    }

    .product-card-item:hover .product-card-item-image img {
      transform: scale(1.02) translateX(-5px) translateY(-5px);
    }
  }
  @media (min-width: 1920px) and (max-width: 1920px) {
    .filter-customization-box {
      left: 60% !important;
    }
  }


  /* === BÜYÜK EKRANLAR İÇİN RESPONSIVE AYARLAR (1920px+) === */
  @media (min-width: 1921px) {
    /* Seruven Hero Section için büyük ekran düzenlemeleri */
    .seruven-hero-container {
      max-width: 1600px;
      margin: 0 auto;
      padding: 0 2%;
    }
    .settings-button{
      display: none !important;
    }
    .phone-mockup{
      width: 200px;
      height: 200px;
    }
    .settings-button{
      display: none;
    }
    .seruven-hero-content {
      max-width: 800px;
    }

    .seruven-hero-title {
      font-size: clamp(70px, 8vw, 120px);
    }

    .seruven-hero-description {
      font-size: clamp(16px, 1.5vw, 20px);
      max-width: 600px;
    }

    /* Filter Customization Box için büyük ekran ayarları */
    .seruven-hero-offset-box-container {
      position: relative;
      width: 100%;
      max-width: 550px;
      margin: 0 auto;
      right: auto;
      bottom: auto;
      transform: none;
      padding: 0;
    }

    .filter-customization-box {
      position: relative;
      top: auto;
      left: auto;
      transform: none;
      width: 100%;
      max-width: 500px;
      margin: 2rem auto;
      min-height: 180px;
      padding: 24px;
      font-size: clamp(14px, 1.2vw, 16px);
    }

    .filter-title {
      font-size: clamp(1.8rem, 2.5vw, 2.2rem);
      line-height: 1.1;
    }

    .filter-description {
      font-size: clamp(0.85rem, 1.1vw, 1rem);
      line-height: 1.4;
    }

    .phone-mockup {
      width: clamp(250px, 20vw, 320px);
      height: clamp(250px, 20vw, 320px);
      margin: 0 30px;
    }

    .filter-button {
      width: clamp(45px, 4vw, 55px);
      height: clamp(45px, 4vw, 55px);
    }

    .settings-button {
      width: clamp(50px, 4.5vw, 60px);
      height: clamp(50px, 4.5vw, 60px);
      right: clamp(80px, 8vw, 120px);
      bottom: clamp(-5px, -0.5vw, 0px);
    }
  }

  /* 2560px ve üstü Ultra Wide ekranlar için */
  @media (min-width: 2560px) {
    .seruven-hero-container {
      max-width: 1800px;
      padding: 0 1%;
    }
    .settings-button{
      display: none !important;
      }
    .seruven-hero-content {
      max-width: 900px;
    }

    .filter-customization-box {
      max-width: 600px;
      min-height: 200px;
      padding: 30px;
    }

    .filter-title {
      font-size: 2.4rem;
    }

    .filter-description {
      font-size: 1.1rem;
    }

    .phone-mockup {
      width: 350px;
      height: 350px;
      margin: 0 40px;
    }
  }

  /* 4K ekranlar için (3840px+) */
  @media (min-width: 3840px) {
    .seruven-hero-container {
      max-width: 2200px;
    }
    .settings-button{
      display: none !important;
      }
    .seruven-hero-content {
      max-width: 1100px;
    }

    .seruven-hero-title {
      font-size: 140px;
    }

    .seruven-hero-description {
      font-size: 22px;
      max-width: 700px;
    }

    .filter-customization-box {
      max-width: 700px;
      min-height: 220px;
      padding: 35px;
    }

    .filter-title {
      font-size: 2.8rem;
    }

    .filter-description {
      font-size: 1.2rem;
    }

    .phone-mockup {
      width: 400px;
      height: 400px;
      margin: 0 50px;
    }
  }

  @media (max-width: 1700px) and (min-width: 1441px) {
      .products-content {
          width: min(1200px, 80vw);
          height: 330px;
          max-width: 80vw;
          gap: 26px;
          padding: 18px 26px;
          transform: translateX(-6%);
      }

      .application-areas-content {
          width: min(750px, 58vw) !important;
          height: 305px;
          max-width: 58vw !important;
          gap: 24px !important;
          padding: 18px 24px !important;
          transform: translateX(-14%) !important;
      }

      .application-areas-content .products-categories {
          gap: 32px !important;
      }

      .application-areas-content .category-items {
          gap: 0 20px !important;
      }

      .dropdown:nth-child(2) .dropdown-content {
          left: max(-280px, calc(-35vw + 110px));
      }

      .dropdown:nth-child(2) .dropdown-content::before {
          left: min(330px, calc(35vw + 100px));
      }

      .dropdown:nth-child(3) .dropdown-content {
          left: max(-140px, calc(-20vw + 80px)) !important;
      }

      .dropdown:nth-child(3) .dropdown-content::before {
          left: min(200px, calc(20vw + 100px)) !important;
      }
  }

  /* === ANASAYFA PRODUCT RESPONSIVE TAMAMLANDI === */

  /* === FAQ SECTION === */
  .arkaplanli-section {
    position: relative;
    width: 100%;
    min-height: 3500px; /* Urun-gorsel için ekstra yükseklik */
    overflow: hidden;
    display: flex;
    flex-direction: column; /* FAQ ve ürün görseli alt alta gelsin */
    margin-top: -4em;
    z-index: 1;
    align-items: center;
    justify-content: flex-start;
    text-align: center;
  }
  /* ESKİ URUN-GORSEL-IMG STİLLERİ - ARTIK KULLANILMIYOR
  .urun-gorsel-img{
    width: 80% !important;
    display: block;
    margin: 0 auto;
    text-align: center;
    position: relative;
    left: 50%;
    transform: translateY(-100vh) translateX(17%);
    opacity: 0;
    transition: all 1.5s ease-out;
  }
  */

  /* ESKİ ANİMASYON STİLLERİ - ARTIK KULLANILMIYOR
  .urun-gorsel-img.animate {
    transform: translateY(0) translateX(17%);
    opacity: 1;
    object-fit: contain;
  }
  */

  /* ESKİ MOBİL UYUMLULUK STİLLERİ - ARTIK KULLANILMIYOR
  @media (max-width: 768px) {
    .urun-gorsel-img {
      width: 90% !important;
      transform: translateY(-50vh) translateX(17%);
      transition: all 1.2s ease-out;
    }

    .urun-gorsel-img.animate {
      transform: translateY(0) translateX(17%);
      object-fit: contain;
    }
  }

  @media (max-width: 480px) {
    .urun-gorsel-img {
      width: 95% !important;
      transform: translateY(-30vh) translateX(17%);
      transition: all 1s ease-out;
    }

    .urun-gorsel-img.animate {
      object-fit: contain;
    }
  }
  */


  @media (min-width: 1921px) {
    .arkaplanli-section::before {
      display: none;
      width: 50%;
    }

  }

  .arkaplanli-section img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
  }

  /* İkinci layer - background-02.png */
  .arkaplanli-section::before {
    content: '';
    position: absolute;
    top: 12vw; /* Responsive top pozisyonu */
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('../img/backgorund-02.webp');
    background-size: contain;
    background-position: center bottom;
    background-repeat: no-repeat;
    z-index: 3;
    pointer-events: none;
  }

  @media (min-width: 1667px) {
    .arkaplanli-section::before {
      top: 200px;
    }
  }

  @media (max-width: 999px) {
    .arkaplanli-section::before {
      top: 120px;
    }
  }

  /* Sadece çok büyük ekranlarda contain olsun */
  @media (min-width: 1700px) {
    .arkaplanli-section img {
      object-fit: cover;
    }
  }

  /* Mobil ve küçük ekranlarda margin-top iptal olsun */
  @media (max-width: 1024px) {
    .arkaplanli-section {
      margin-top: 0;
    }
  }

  .faq-overlay {
    position: relative;
    z-index: 5; /* Urun-gorsel'in üstünde olsun */
    width: 3250px;
    max-width: 1536px;
    margin: 9px auto 0 auto;
    padding: 0px 5% 80px 5%;

    /* Flex içinde ilk sırada gelsin */
    order: 1;
    flex-shrink: 0;
  }

  .faq-container {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 24px;
    padding: 60px;
    box-shadow: 0 25px 60px rgba(0, 29, 85, 0.15);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: flex-start;
  }

  .faq-left-section {
    display: flex;
    flex-direction: column;
    gap: 20px;
  }

  .faq-right-section {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: right;
    text-align: left;
    padding-top: 30%;
  }

  .faq-badge {
    display: inline-block;
    color: #001B48;
    padding: 12px 3px;
    border-radius: 50px;
    font-size: 17px;
    font-weight: 700;
    letter-spacing: 0.5px;
    white-space: nowrap;
  }

  .faq-title {
    font-size: 50px;
    font-weight: 700;
    color: #001B48;
    margin: 0;
    line-height: 1.1;
  }

  .faq-content {
    display: flex;
    flex-direction: column;
    gap: 20px;
  }

  .faq-item {
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.3s ease;
  }


  .faq-item.active {
    border-color: #019cd3;
  }

  .faq-question {
    width: 100%;
    padding: 25px 30px;
    background: none;
    border: none;
    display: flex;
    align-items: center;
    gap: 20px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: left;
  }



  .faq-number {
    font-size: 1.1rem;
    font-weight: 100;
    color: #008ACE;
    filter: opacity(0.3);
    min-width: 40px;
  }

  .faq-text {
    flex: 1;
    font-size: 17px;
    color: #9F9F9F;
    line-height: 1.4;
  }

  .faq-icon {
    font-size: 1.5rem;
    color: #9F9F9F;
    transition: transform 0.3s ease;
    opacity: 0.3;
  }

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

  .faq-answer {
    padding: 0 30px 0 30px;
    max-height: 0;
    overflow: hidden;
    transition: all 0.4s ease;
    background: rgba(232, 253, 255, 0.3);
  }

  .faq-item.active .faq-answer {
    max-height: 200px;
    padding: 0 30px 30px 90px;
  }

  .faq-answer p {
    margin: 0;
    color: #001d55;
    line-height: 1.6;
    font-size: 1rem;
    text-align: left;

    opacity: 0.8;
  }

  /* === FAQ RESPONSIVE - FLUID SYSTEM === */

  /* Modern responsive sistem - Tüm breakpoint'lerde akıcı geçiş */
  .faq-overlay {
    padding: clamp(9px, 1vw, 9px) clamp(2%, 5vw, 5%) clamp(40px, 10vw, 80px) clamp(2%, 5vw, 5%);
    width: clamp(280px, 90vw, 3250px);
    max-width: min(1536px, 95vw);
    margin: 9px auto 0 auto;
  }

  .faq-container {
    background: rgba(255, 255, 255, 0.95);
    border-radius: clamp(16px, 3vw, 24px);
    padding: clamp(25px, 8vw, 60px) clamp(20px, 6vw, 60px);
    box-shadow: 0 25px 60px rgba(0, 29, 85, 0.15);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(100%, 400px), 1fr));
    gap: clamp(25px, 8vw, 80px);
    align-items: flex-start;
  }

  /* Desktop layout korunuyor, mobilde tek sütun oluyor */
  @media (min-width: 900px) {
    .faq-container {
      grid-template-columns: 1fr 1fr;
    }

    .faq-right-section {
      align-items: right;
      text-align: left;
      padding-top: 30%;
    }
  }

  /* Mobil layout - başlık üstte */
  @media (max-width: 899px) {
    .faq-container {
      grid-template-columns: 1fr;
      text-align: center;
    }

    .faq-right-section {
      order: -1;
      align-items: center;
      text-align: center;
      padding-top: 0;
    }

    .faq-left-section {
      order: 1;
    }
  }

  /* FAQ Elements - Fluid responsive */
  .faq-badge {
    font-size: clamp(14px, 2vw, 17px);
    padding: clamp(10px, 1.5vw, 12px) 3px;
  }

  .faq-title {
    font-size: clamp(28px, 7vw, 50px);
    line-height: 1.1;
    margin: 0;
  }

  .faq-question {
    padding: clamp(16px, 3vw, 25px) clamp(18px, 4vw, 30px);
    gap: clamp(12px, 2.5vw, 20px);
  }

  .faq-number {
    font-size: clamp(0.9rem, 1.2vw, 1.1rem);
    min-width: clamp(30px, 4vw, 40px);
  }

  .faq-text {
    font-size: clamp(14px, 2vw, 17px);
    line-height: 1.4;
  }

  .faq-icon {
    font-size: clamp(1.2rem, 2vw, 1.5rem);
  }

  .faq-item.active .faq-answer {
    padding: 0 clamp(18px, 4vw, 30px) clamp(20px, 3vw, 30px) clamp(60px, 10vw, 90px);
  }

  .faq-answer p {
    font-size: clamp(13px, 1.8vw, 16px);
    line-height: 1.6;
  }

  /* === URUN GORSEL - ÖZEL STİLLER === */
  /* ÖNEMLİ: Bu bölüm background-02.png ile uyumlu responsive sistem kullanır */
  /* Background-02: clamp(120px, 12vw, 200px) | Ürün görseli: clamp(360px, 36vw, 600px) */
  /* İki öğe arasındaki 3:1 oranı tüm ekran boyutlarında korunur */

  .urun-gorsel {
    /* FAQ'ın altına flex column içinde yerleş */
    position: relative;
    z-index: 2;
    width: 100%;
    background: transparent;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 60px 0 10px;

    /* Masaüstü için orijinal değer - Background-02 ile uyumlu */
    margin: clamp(360px, 36vw, 600px) 0 0 0;

    /* Flex item olarak davran */
    flex-shrink: 0;
    order: 2; /* FAQ'ın (order: 1) altında gelsin */

    /* Parent'ın stil etkilerini sıfırla */
    overflow: visible;
    text-align: center;

    /* Kendi container'ı olsun */
    min-height: auto;
    max-width: 100%;
  }

  .urun-gorsel .urun-gorsel-img {
    /* Resim için özel stiller - parent'dan bağımsız */
    width: 85% !important;
    max-width: 100%;
    height: auto;
    object-fit: contain;

    /* Pozisyonlama sıfırla */
    position: static;
    left: auto;
    top: auto;

    /* Transform'ları sıfırla */
    transform: none;

    /* Display ayarları */
    display: block;
    margin: 0 auto;

    /* Animasyon ayarları */
    opacity: 0;
    transition: all 1.2s ease-out;

    /* Shadow ve depth efekti */
    filter: drop-shadow(0 10px 30px rgba(0, 29, 85, 0.15));
  }

  .urun-gorsel .urun-gorsel-img.animate {
    opacity: 1;
    transform: scale(1.02);
  }

  /* Responsive tasarım */
  @media (min-width: 1700px) {
    .urun-gorsel {
      padding: 80px 0 10px;
    }

    .urun-gorsel .urun-gorsel-img {
      width: 85% !important;
      max-width: 100%;
    }
  }

  @media (max-width: 1200px) {
    .urun-gorsel {
      padding: 50px 0 10px;
    }

    .urun-gorsel .urun-gorsel-img {
      width: 85% !important;
    }
  }

  @media (max-width: 1024px) {
    .urun-gorsel {
      padding: 40px 0 10px;
      margin: clamp(30%, 5vw, 120px) 0 0 0;
    }

    .urun-gorsel .urun-gorsel-img {
      width: 85% !important;
      transition: all 1s ease-out;
    }
  }

  @media (max-width: 768px) {
    .urun-gorsel {
      padding: 30px 0 10px;
      margin: clamp(110%, 8vw, 200px) 0 0 0;
    }

    .urun-gorsel .urun-gorsel-img {
      width: 85% !important;
      transition: all 0.8s ease-out;
    }

    .urun-gorsel .urun-gorsel-img.animate {
      transform: scale(1.01);
    }
    .arkaplanli-section::before{
        display: none;
    }
  }

  @media (max-width: 480px) {
    .urun-gorsel {
      padding: 20px 0 10px;
      margin: clamp(90%, 6vw, 180px) 0 0 0;
    }

    .urun-gorsel .urun-gorsel-img {
      width: 85% !important;
      transition: all 0.6s ease-out;
    }

    .urun-gorsel .urun-gorsel-img.animate {
      transform: none;
    }
    .arkaplanli-section::before{
        display: none;
    }
  }

  /* === BLOG SECTION === */
  .blog-section {
    position: relative;
    z-index: 5;
    order: 3;
    width: 100%;
    padding: 0 5%; /* Align with other sections */
    box-sizing: border-box;
    margin-top: 40px; /* Büyük ekranlar için minimum margin */
  }

  .blog-container {
    max-width: 1536px;
    margin: 0 auto;
    text-align: left;

    /* Blur background effect */
    border: 1px solid #DEFFFB6A;
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    filter: brightness(0.95);
    border-radius: 24px;
    padding: 60px;
    box-shadow: 0 10px 30px rgba(0, 29, 85, 0.1);
  }

  .blog-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(229, 251, 253, 0.31);
    border-radius: 24px;
    z-index: -1;
    pointer-events: none;
  }

  .blog-header {
    margin-bottom: 40px;
  }

  .blog-title {
    font-size: clamp(28px, 7vw, 50px);
    font-weight: 700;
    color: #001B48;
    margin-bottom: 40px;
  }

  .blog-grid {
    display: grid;
    grid-template-columns: minmax(320px, 1fr) minmax(360px, 1.1fr) minmax(320px, 1fr);
    gap: 0px;
    height: auto;
    justify-content: center;
    max-width: 100%;
    margin: 0 auto;
  }

  .blog-cards-left {
    display: grid;
    grid-template-rows: 1fr 1fr;
    gap: 20px;
    min-height: 600px;
  }

  .blog-visuals-middle {
    display: grid;
    grid-template-rows: 1fr 1fr;
    gap: 20px;
    min-height: 600px;
  }

  .blog-cards-right {
    display: grid;
    grid-template-rows: 1.0fr 1.0fr;
    gap: 0px;
    min-height: 600px;
    margin-left: 40px;
  }

  .blog-card {
    border-radius: 7px;
    padding: clamp(20px, 3vw, 32px);
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: all 0.3s ease;
    box-sizing: border-box;
    align-items: flex-start;
    width: 100%;
    height: 100%;
    min-height: 280px;
  }

  .blog-cards-right .blog-card:last-child {
    width: 100%;
    height: 100%;
  }

  .blog-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 29, 85, 0.15);
  }

  .blog-card-dark {
    background: #001B48;
    color: white;
  }

  .blog-card-blue {
    background: linear-gradient(135deg, #4a9eff 0%, #00a9e0 100%);
    color: white;
  }

  .blog-card-light {
    background: linear-gradient(135deg, #ffffff 0%, #f8fbff 100%);
    color: #001d55;
    border: 1px solid rgba(0, 29, 85, 0.08);
  }

  .blog-card-icon {
    width: 48px;
    height: 48px;
    text-decoration: none;
    background: rgba(255, 255, 255, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    flex-shrink: 0;
  }

  .blog-card-light .blog-card-icon {
    background: #0ab1d6;
    color: #00a9e0;
  }

  .blog-card-icon i {
    font-size: 24px;
    color: white;
  }

  .blog-card-light .blog-card-icon i {
    color: black;
  }

  .blog-card-content {
    flex: 1;
  }

  .blog-card-title {
    font-size: clamp(18px, 2.5vw, 24px);
    font-weight: 700;
    margin-bottom: 16px;
    line-height: 1.3;
  }

  .blog-card-title-large {
    font-size: clamp(24px, 3.5vw, 35px);
  }

  .blog-card-description {
    font-size: 1rem;
    line-height: 1.6;
    color: #ffffff;
    margin: 0 0 20px 0;
    flex-grow: 1;
  }

  /* Blog Card Button özel stilleri (contact-btn ile aynı) */
  .blog-card-button {
    display: inline-flex;
    align-items: center;
    justify-content: flex-start; /* Added to align content left */
    gap: 8px;
    text-decoration: none;
    background: linear-gradient(90deg, #0391d0, #0eb6da);
    border: none;
    color: white !important; /* Metin rengini beyaz yap ve önceliklendir */

    padding: 0.9rem 3.25rem;
    border-radius: 3.25rem;
    font-weight: 600;
    cursor: pointer;
    font-size: 0.9rem;
    margin-top: auto;
    transition: all 0.3s ease;
  }

  .blog-card-light .blog-card-button {
    /* .blog-card-button zaten gerekli stilleri içeriyor, bu kuralı boş bırakabiliriz veya kaldırabiliriz */
    /* Ancak belirli bir durumu yönetmek için tutulabilir. Şimdilik rengi garantileyelim. */
    color: white !important;
  }

  .blog-card-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(3, 145, 208, 0.4);
  }


  .blog-card-button i {
    transition: transform 0.3s ease;
  }

  .blog-card-button:hover i {
      transform: translateX(4px);
  }

  .blog-visual-area {
    position: relative;
    overflow: hidden;
    width: 100%;
    height: 100%;
  }

  .blog-visual-only {
    border-radius: 7px;
    overflow: hidden;
    position: relative;
    background-image: url('../img/blog-03.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    width: 100%;
    height: 100%;
    min-height: 280px;
  }

  .blog-visual-middle {
    border-radius: 7px;
    overflow: hidden;
    position: relative;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    width: 100%;
    height: 100%;
    min-height: 280px;
  }

  .blog-visual-middle.visual-1 {
    background-image: url('../img/blog-01.png');
  }

  .blog-visual-middle.visual-2 {
    background-image: url('../img/blog-02.png');
  }

  .blog-visual-content {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
  }

  .blog-visual-area:hover .blog-visual-content {
    transform: scale(1.05);
  }

  /* Large Tablet & Medium Desktop */
  @media (max-width: 1440px) and (min-width: 1200px) {
    .blog-container {
      padding: clamp(40px, 4vw, 60px);
    }

    .blog-grid {
      grid-template-columns: minmax(280px, 1fr) minmax(320px, 1.1fr) minmax(280px, 1fr);
      gap: 0px;
    }

    .blog-cards-left,
    .blog-visuals-middle,
    .blog-cards-right {
      min-height: 550px;
    }
  }

  /* Tablet Portrait & Small Desktop */
  @media (max-width: 1199px) and (min-width: 900px) {
    .blog-section {
      margin-top: clamp(50px, 4vw, 80px);
    }

    .blog-container {
      padding: clamp(30px, 3.5vw, 50px);
    }

    .blog-grid {
      grid-template-columns: minmax(250px, 1fr) minmax(280px, 1.1fr) minmax(250px, 1fr);
      gap: 0px;
    }

    .blog-cards-left,
    .blog-visuals-middle,
    .blog-cards-right {
      min-height: 500px;
    }

    .blog-card {
      padding: clamp(18px, 2.5vw, 28px);
      min-height: 240px;
    }

    .blog-card-title {
      font-size: clamp(16px, 2.2vw, 22px);
    }

    .blog-card-title-large {
      font-size: clamp(20px, 3vw, 30px);
    }

    .blog-card-description {
      font-size: clamp(13px, 1.5vw, 16px);
    }
  }

  /* Large Mobile & Small Tablet */
  @media (max-width: 899px) and (min-width: 600px) {
    .blog-section {
      margin-top: clamp(40px, 5vw, 70px);
    }

    .blog-container {
      padding: clamp(25px, 3vw, 40px);
    }

    .blog-grid {
      grid-template-columns: repeat(2, 1fr);
      gap: 0px;
    }

    /* Tüm blog elemanlarını grid'e düz şekilde yerleştir */
    .blog-cards-left,
    .blog-visuals-middle,
    .blog-cards-right {
      display: contents;
    }

    .blog-card,
    .blog-visual-only,
    .blog-visual-middle {
      width: 100% !important;
      height: auto !important;
      min-height: 280px;
      border-radius: 12px;
    }

    .blog-card {
      padding: 22px;
      min-height: 300px;
    }

    .blog-card-title {
      font-size: 18px;
    }

    .blog-card-title-large {
      font-size: 22px;
    }
  }

  /* Responsive Design - 1024px'den sonra mobil */
  @media (max-width: 599px) {
    .blog-section {
      margin-top: clamp(60px, 5vw, 100px);
    }

    .blog-container {
      padding: clamp(15px, 3vw, 25px);
    }

    .blog-grid {
      display: grid;
      grid-template-columns: repeat(2, 1fr); /* 2'li grid - mobilde */
      gap: 0px;
      height: auto;
    }

    /* Tüm blog elemanlarını grid'e düz şekilde yerleştir */
    .blog-cards-left,
    .blog-visuals-middle,
    .blog-cards-right {
      display: contents; /* Wrapper'ları kaldır, içerikleri direkt grid'e yerleştir */
    }

    /* Tüm blog elemanları için ortak stiller */
    .blog-card,
    .blog-visual-only,
    .blog-visual-middle {
      width: 100% !important;
      height: auto !important;
      min-height: 250px;
      border-radius: 12px;
      overflow: hidden;
      transition: all 0.3s ease;
    }

    /* İçerik kartları için özel ayarlar */
    .blog-card {
      padding: 18px;
      display: flex;
      flex-direction: column;
      justify-content: space-between;
      min-height: 270px;
    }

    /* Görsel kartları için özel ayarlar */
    .blog-visual-only,
    .blog-visual-middle {
      min-height: 250px;
      background-size: cover;
      background-position: center;
      background-repeat: no-repeat;
    }

    /* Hover efektleri */
    .blog-card:hover,
    .blog-visual-only:hover,
    .blog-visual-middle:hover {
      transform: translateY(-5px);
      box-shadow: 0 15px 35px rgba(0, 29, 85, 0.15);
    }

    .blog-card-title {
      font-size: 15px;
      margin-bottom: 10px;
    }

    .blog-card-title-large {
      font-size: 18px;
    }

    .blog-card-description {
      font-size: 13px;
      line-height: 1.4;
    }

    .blog-card-button {
      padding: 0.6rem 1.2rem;
      font-size: 0.75rem;
    }
  }

  @media (max-width: 480px) {
    .urun-gorsel {
      padding: 30px 0 10px;
      margin: clamp(190%, 5vw, 160px) 0 0 0;
    }

    .blog-section {
      margin-top: clamp(50px, 8vw, 120px);
    }

    .blog-container {
      padding: 15px;
      border-radius: 16px;
    }

    .blog-container::before {
      border-radius: 16px;
    }

    .blog-grid {
      grid-template-columns: repeat(2, 1fr); /* Mobilde de 2'li grid koru */
      gap: 0px;
    }

    /* Mobil blog elemanları */
    .blog-card {
      padding: 15px;
      min-height: 220px;
    }

    .blog-visual-only,
    .blog-visual-middle {
      min-height: 220px;
    }

    .blog-card-title {
      font-size: 14px;
      margin-bottom: 10px;
    }

    .blog-card-title-large {
      font-size: 16px !important;
    }

    .blog-card-description {
      font-size: 12px;
      line-height: 1.4;
    }

    .blog-card-button {
      padding: 0.5rem 1rem;
      font-size: 0.7rem;
    }
  }



  /* Landscape modunda tek sütunlu yapıya geçiş (isteğe bağlı) */
  @media (max-width: 768px) and (orientation: landscape) {
    .blog-grid {
      grid-template-columns: 1fr;
    }
  }



  /* Çok küçük ekranlar için tek sütun */
  @media (max-width: 360px) {
    .blog-grid {
      grid-template-columns: 1fr; /* Çok küçük ekranlarda tek sütuna geç */
      gap: 0px;
    }

    .blog-card,
    .blog-visual-only,
    .blog-visual-middle {
      min-height: 250px;
    }

    .blog-card {
      padding: 12px;
    }

    .blog-card-title {
      font-size: 13px;
    }

    .blog-card-title-large {
      font-size: 15px !important;
    }

    .blog-card-description {
      font-size: 11px;
    }

    .blog-card-button {
      padding: 0.4rem 0.8rem;
      font-size: 0.65rem;
    }
  }

  /* === MEDIA CENTER SECTION === */
  .section-mediacenterone {
    position: relative;
    background: #F7F7F7;
    padding: 120px 0;
    overflow: hidden;
  }

  .section-mediacenterone::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
  }

  .mediacenter-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 5%;
    position: relative;
    z-index: 2;
  }

  .mediacenter-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 60px;
  }

  .mediacenter-left {
    flex: 1;
    position: relative;
  }

  .mediacenter-decoration {
    position: absolute;
    top: -30px;
    left: -20px;
    z-index: 1;
  }

  .decoration-circles {
    position: relative;
  }

  .decoration-circles svg {
    width: 80px;
    height: auto;
    transition: all 0.3s ease;
  }

  .decoration-circles svg:hover {
    transform: scale(1.05);
  }

  .mediacenter-title {
    font-size: 64px;
    font-weight: 1;
    color: #02B7D9;
    line-height: 1.1;
    margin: 60px 0 0 60px;
    position: relative;
    z-index: 2;
  }

  .mediacenter-right {
    flex-shrink: 0;
  }

  .mediacenter-actions {
    display: flex;
    align-items: center;
    gap: 25px;
    margin-top: 47%;
  }

  .mediacenter-icon-btn {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: white;
    border: 2px solid #019cd3;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: none;
    flex-shrink: 0;
  }

  .mediacenter-icon-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(1, 156, 211, 0.25);
    border-color: #0288a3;
  }

  .mediacenter-icon-btn i,
  .mediacenter-icon-btn .material-symbols-outlined {
    color: #019cd3;
    font-size: 1.6rem;
  }

  .mediacenter-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: linear-gradient(135deg, #1e3a5f 0%, #2d5aa0 100%);
    color: white;
    text-decoration: none;
    padding: 18px 36px;
    border-radius: 45px;
    font-weight: 500;
    font-size: 1rem;
    transition: all 0.3s ease;
    box-shadow: none;
    white-space: nowrap;
  }

  .mediacenter-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(30, 58, 95, 0.3);
    background: linear-gradient(135deg, #1a3252 0%, #285293 100%);
  }

  .mediacenter-btn i {
    font-size: 1.1rem;
    transition: transform 0.3s ease;
  }

  .mediacenter-btn:hover i {
    transform: translateX(3px);
  }

  /* Responsive Design */
  @media (max-width: 1200px) {
    .section-mediacenterone {
      padding: 100px 0;
    }

    .mediacenter-content {
      gap: 50px;
    }

    .mediacenter-actions {
      gap: 20px;
      margin-top: clamp(8px, 20%, 140px);
    }

    .mediacenter-icon-btn {
      width: 65px;
      height: 65px;
    }

    .mediacenter-icon-btn i,
    .mediacenter-icon-btn .material-symbols-outlined {
      font-size: 1.4rem;
    }

    .mediacenter-title {
      font-size: clamp(2.4rem, 4.5vw, 3.6rem);
    }
  }

  @media (min-width: 993px) and (max-width: 1512px) {
      .seruven-hero-section::before {
          display: none;
      }
      .seruven-hero-offset-box-container {
          position: relative;
          display: block;
          width: 100%;
          padding: 0;
          margin: 0;
          z-index: 2;
          top: auto;
          bottom: auto;
          left: auto;
          right: auto;
      }
      .filter-customization-box {
          background: rgba(255, 255, 255, 0.1);
          border: 1px solid rgba(255, 255, 255, 0.2);
          backdrop-filter: blur(10px);
          color: white;
      }
      .filter-customization-box .filter-title,
      .filter-customization-box .filter-description {
          color: white;
      }
  }

  @media (max-width: 992px) {
      .seruven-hero-section {
          padding: 80px 40px 60px;
          text-align: center;
          flex-direction: column;
          min-height: auto;
          align-items: center;
      }
      .seruven-hero-content {
          padding-top: 0;
          max-width: 100%;
          width: 100%;
      }
      .seruven-hero-subtitle {
          top: 0;
          font-size: 20px;
          margin-bottom: 1rem;
      }
      .seruven-hero-title {
          font-size: 60px;
      }
      .seruven-hero-description {
          max-width: 600px;
          margin-left: auto;
          margin-right: auto;
      }
      .seruven-hero-section::before {
          display: none;
      }
      .seruven-hero-offset-box-container {
          position: relative;
          width: 100%;
          margin: 40px auto 0 auto;
          padding: 0;
          bottom: auto;
          right: auto;
          left: auto;
          top: auto;
          z-index: 2;
          color: #001d55;
      }
      .filter-customization-box {
          position: relative;
          top: auto;
          left: auto;
          width: 100%;
          max-width: 600px;
          margin: 0 auto;
          backdrop-filter: blur(9px) brightness(1.1);
          background-color: #001b48;
          color: #FFFFFF;
          box-shadow: none;
          border: 0;
      }

      .filter-customization-box .filter-title,
      .filter-customization-box .filter-description {
          color: #FFFFFF;
      }
  }

  @media (max-width: 768px) {
      .seruven-hero-section {
          padding: 120px 30px 60px 30px;
      }

      .seruven-hero-title {
          font-size: 48px;
          line-height: 1.6;
      }
      .seruven-hero-subtitle {
          font-size: 18px;
      }
      .seruven-hero-description {
          font-size: 15px;
      }
      .filter-customization-box {
          flex-direction: row;
      }
      .settings-button {
          display: none;
      }
      .filter-content {
          max-width: 100%;
      }

      .section-mediacenterone {
        padding: 80px 0;
      }

      .mediacenter-content {
        gap: 35px;
        text-align: left;
      }

      .mediacenter-title {
        font-size: clamp(2rem, 4vw, 3rem);
        margin: 40px 0 0 0;
        text-align: left;
      }

      .mediacenter-actions {
        margin-top: 30px;
      }
  }

  @media (min-width: 768px) and (max-width: 1024px) and (orientation: portrait) {
      .filter-customization-box {
          flex-direction: row;
      }
      .settings-button {
          display: none;
      }
  }

  @media (max-width: 600px) {
    .section-mediacenterone {
      padding: 60px 0;
    }

    .mediacenter-container {
      padding: 15px;
    }

    .mediacenter-content {
      gap: 30px;
      flex-direction: column;
      text-align: left;
      align-items: flex-start;
    }

    .mediacenter-left {
      width: 100%;
      display: flex;
      flex-direction: column;
      align-items: flex-start;
      position: relative;
    }

    .mediacenter-decoration {
      position: relative;
      top: 0;
      left: 0;
      margin-bottom: 20px;
    }

    .mediacenter-title {
      font-size: clamp(1.8rem, 5vw, 2.5rem);
      margin: 0;
      text-align: left;
    }

    .mediacenter-right {
      width: 100%;
      display: flex;
      justify-content: flex-start;
    }

    .mediacenter-actions {
      flex-direction: row;
      gap: 15px;
      margin-top: 0;
      justify-content: flex-start;
      align-items: center;
    }

    .mediacenter-btn {
      padding: 14px 24px;
      font-size: 0.85rem;
    }

    .mediacenter-icon-btn {
      width: 55px;
      height: 55px;
    }

    .mediacenter-icon-btn i,
    .mediacenter-icon-btn .material-symbols-outlined {
      font-size: 1.2rem;
    }

    .decoration-circles svg {
      width: 60px;
    }
  }

  @media (max-width: 480px) {
      .seruven-hero-section {
          padding: 100px 20px 40px 20px;
      }
      .seruven-hero-title {
          font-size: 40px;
      }
      .seruven-hero-subtitle {
          font-size: 16px;
      }
      .filter-customization-box {
          border: 0;
      }

      .section-mediacenterone {
        padding: 50px 0;
      }

      .mediacenter-container {
        padding: 0 5%;
      }

      .mediacenter-content {
        gap: 25px;
        text-align: left;
        align-items: flex-start;
      }

      .mediacenter-title {
        font-size: clamp(1.5rem, 6vw, 2rem);
        text-align: left;
      }

      .mediacenter-actions {
        flex-direction: column;
        gap: 15px;
        width: 100%;
        align-items: flex-start;
      }

      .mediacenter-btn {
        width: auto;
        justify-content: flex-start;
        padding: 14px 20px;
        font-size: 0.8rem;
      }

      .mediacenter-icon-btn {
        width: 50px;
        height: 50px;
      }

      .decoration-circles svg {
        width: 50px;
      }
  }

  /* Ürünler Container */
  .urunler-container {
    position: relative;
    transform: translate(171px, -31px);
    transition: transform 0.3s ease;
  }

  /* Ürünler Yan Görsel Stilleri */
  .urunler-yan-gorsel {
    position: relative;
    width: 776px;
    height: 441px;
    z-index: 2;
  }

  /* Ürünler Gölge Stilleri */
  .urunler-golge {
    position: absolute;
    top: 100%;
    left: 0;
    transform: translateY(-164px);
    width: 800px;
    height: auto;
    z-index: 1;
    opacity: 0.6;
  }

  /* Responsive ayarları */
  @media (max-width: 1024px) {
    .urunler-container {
      transform: translate(80px, -20px);
    }

    .urunler-yan-gorsel {
      width: 550px;
      height: 312px;
    }

    .urunler-golge {
      width: 570px;
      transform: translateY(-116px);
    }
  }

  @media (max-width: 900px) {
    .urunler-container {
      transform: translate(40px, -15px);
    }

    .urunler-yan-gorsel {
      width: 480px;
      height: 272px;
    }

    .urunler-golge {
      width: 500px;
      transform: translateY(-102px);
    }
  }

  @media (max-width: 768px) {
    .urunler-container {
      transform: translate(0px, 90px);
      display: flex;
      justify-content: center;
      align-items: center;
      margin: 0 auto;
      width: 100%;
      max-width: calc(100vw - 40px);
    }

    .urunler-yan-gorsel {
      width: min(380px, calc(100vw - 60px));
      height: auto;
      max-width: 100%;
    }

    .urunler-golge {
      width: min(400px, calc(100vw - 40px));
      transform: translateY(-80px);
    }
  }

  @media (max-width: 600px) {
    .urunler-container {
      transform: translate(0px, 80px);
      max-width: calc(100vw - 30px);
    }

    .urunler-yan-gorsel {
      width: min(320px, calc(100vw - 50px));
      height: auto;
    }

    .urunler-golge {
      width: min(340px, calc(100vw - 30px));
      transform: translateY(-67px);
    }
  }

  @media (max-width: 480px) {
    .urunler-container {
      transform: translate(0px, 70px);
      max-width: calc(100vw - 20px);
    }

    .urunler-yan-gorsel {
      width: min(280px, calc(100vw - 40px));
      height: auto;
    }

    .urunler-golge {
      width: min(300px, calc(100vw - 20px));
      transform: translateY(-59px);
    }
  }

  @media (max-width: 375px) {
    .urunler-container {
      max-width: calc(100vw - 15px);
    }

    .urunler-yan-gorsel {
      width: min(250px, calc(100vw - 30px));
      height: auto;
    }

    .urunler-golge {
      width: min(270px, calc(100vw - 15px));
      transform: translateY(-52px);
    }
  }

  @media (max-width: 320px) {
    .urunler-container {
      max-width: calc(100vw - 10px);
    }

    .urunler-yan-gorsel {
      width: min(220px, calc(100vw - 20px));
      height: auto;
    }

    .urunler-golge {
      width: min(240px, calc(100vw - 10px));
      transform: translateY(-46px);
    }
  }

  @media (max-width: 1512px) {
      .seruven-hero-section {
          padding: 80px 40px 60px 40px;
          text-align: center;
          min-height: auto;
          display: block;
          align-items: initial;
      }
      .seruven-hero-container {
         display: grid;
         gap: initial;
         text-align: center;
      }
      .seruven-hero-content {
          padding-top: 0;
          max-width: 100%;
          width: 100%;
      }
      .seruven-hero-subtitle {
          top: 0;
          font-size: 20px;
          margin-bottom: 1rem;
      }
      .seruven-hero-title {
          font-size: 60px;
      }
      .seruven-hero-description {
          max-width: 600px;
          margin-left: auto;
          margin-right: auto;
      }
      .seruven-hero-section::before {
          display: none;
      }
      .seruven-hero-offset-box-container {
          position: relative;
          display: block;
          top: auto;
          bottom: auto;
          left: auto;
          right: auto;
          width: 100%;
          max-width: 600px;
          margin: 40px auto 0;
          padding: 0;
          z-index: 2;
          color: #001d55;
          display: flex;
          align-items: center;
          justify-content: center;
      }
      .filter-customization-box {
          position: relative;
          top: auto;
          left: auto;
          width: 100%;
          max-width: 600px;
          margin: 0 auto;
          backdrop-filter: blur(9px) brightness(1.1);
          background-color: #001b48;
          color: #FFFFFF;
          box-shadow: none;
          border: 0;
      }
      .filter-customization-box .filter-title,
      .filter-customization-box .filter-description {
          color: #FFFFFF;
      }
  }

  @media (max-width: 1512px) {
      .seruven-hero-section::before {
          display: none;
      }
      /* Konteynerin absolute konumlandırmasını kaldırıp normal akışa dahil ediyoruz */
      .seruven-hero-offset-box-container {
          position: relative;
          bottom: auto;
          right: auto;
          display: flex;
          align-items: center;
          justify-content: center;
          height: auto;
          width: 100%;
          max-width: 600px;
          margin: 40px auto 0;
      }
      .filter-customization-box{
          color: #fff;
          background-color: #001b48;
      }
      .filter-customization-box .filter-title, .filter-customization-box .filter-description{
          color: #fff;
      }
  }

  @media (max-width: 992px) {
      .seruven-hero-container {
          grid-template-columns: 1fr;
          gap: 2rem;
      }
      .seruven-hero-offset-box-container {
          margin: 0 auto;
          max-width: 600px;
      }
  }

  @media (max-width: 768px) {
      .seruven-hero-section {
          padding: 120px 30px 60px 30px;
      }

      .seruven-hero-title {
          font-size: 48px;
      }
      .seruven-hero-subtitle {
          font-size: 18px;
      }
      .seruven-hero-description {
          font-size: 15px;
      }
      .filter-customization-box {
          flex-direction: column;
          gap: 20px;
          text-align: center;
          border: 0;
      }
      .filter-content {
          max-width: 100%;
      }
  }

  @media (max-width: 480px) {
      .seruven-hero-section {
          padding: 100px 20px 40px 20px;
      }
      .seruven-hero-title {
          font-size: 40px;
      }
      .seruven-hero-subtitle {
          font-size: 16px;
      }
  }

  /* === FOOTER === */
  .site-footer {
    background: #F7F7F7;
    color: white;
    position: relative;
    overflow: hidden;
    padding: 4rem 3rem 2rem 3rem;
  }

  .footer-main {
    max-width: 1650px;
    margin: 0 auto;
    background: #001b48 url('../img/footerbackground.png') no-repeat center center;
    background-size: cover;
    border-radius: 20px;
    overflow: hidden;
    position: relative;
    padding: 4rem 0 2rem 0;
  }

  .footer-main::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 27, 72, 0.2);
    z-index: 1;
  }

  .footer-container {
    padding: 0 3rem;
    position: relative;
    z-index: 2;
  }

  .footer-main-grid {
    display: grid;
    grid-template-columns: 200px 1fr;
    gap: 5rem;
    align-items: start;
  }

  .footer-brand {
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
    padding-top: 1rem;
  }

  .footer-logo {
    width: 160px;
    height: auto;
    object-fit: contain;
  }

  .footer-content {
    display: grid;
    grid-template-columns: auto auto auto;
    gap: 0;
    margin-top: 6%;
    margin-left: -4rem;
    justify-content: start;
  }

  .footer-column {
    padding-right: 11.5rem;
  }

  .footer-column:last-child {
    padding-right: 0;
  }

  .footer-column-title {
    font-size: 1rem;
    font-weight: 600;
    color: #456CAC;
    margin-bottom: 1.5rem;
    position: relative;
    padding-bottom: 0.8rem;
  }

  .footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
  }

  .footer-links li {
    margin-bottom: 0.8rem;
  }

  .footer-links a {
    color: #456CAC;
    text-decoration: none;
    font-size: 0.9rem;
    line-height: 1.4;
    transition: all 0.3s ease;
    position: relative;
  }

  .footer-links a:hover {
    color: #dafff1;
  }

  .footer-sublinks {
    list-style: none;
    padding: 0;
    line-height: 1.4;
    font-size: 10px;

  }

  .footer-sublinks li {
    margin-bottom: 0.5rem;
  }

  .footer-sublinks a {
    color: #456CAC;
    text-decoration: none;
    font-size: 0.85rem;
    line-height: 1.4;
    transition: all 0.3s ease;
    opacity: 0.8;
  }

  .footer-sublinks a:hover {
    color: #dafff1;
    opacity: 1;
  }

  /* Footer Bottom - Footer-main altında */
  .footer-bottom-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
    border-top: 1px solid rgba(218, 255, 241, 0.1);
    padding-top: 2rem;
    margin-top: 2rem;
  }

  .copyright {
    margin: 0;
    font-size: 0.9rem;
    color: #456CAC;
  }

  .footer-legal-links {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
    justify-content: center;
  }

  .footer-legal-links a {
    color: #456CAC;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease;
  }

  .footer-legal-links a:hover {
    color: #00a9e0;
  }

  .footer-bottom-right {
    display: flex;
    align-items: center;
    gap: 1rem;
    position: relative;
    margin-right: 5%;
  }

  .follow-text {
    font-size: 0.9rem;
    color: #00a9e0;
    font-weight: 600;
  }

  .social-links {
    display: flex;
    gap: 0.8rem;
  }

  .social-link {
    width: 36px;
    height: 36px;
    background: linear-gradient(135deg, #00a9e0, #0eb6da);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
  }

  .social-link:hover {
    background: linear-gradient(135deg, #008cba, #0391d0);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 169, 224, 0.5);
  }

  .social-link svg {
    width: 18px;
    height: 18px;
    color: black;
  }

  /* NOB Logo */
  .nob-logo {
    position: absolute;
    right: -5rem;
    top: 50%;
    transform: translateY(-50%);
  }

  .nob-icon {
    color: #001b48;
    padding: 6px 10px;
    border-radius: 4px;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.5px;
  }

  /* Sadece tablet ve mobil için minimal responsive */
  @media (max-width: 768px) {
    .site-footer {
      padding: 1rem 0 0 0;
      margin: 0;
    }

    .footer-main {
      border-radius: 0;
      padding: 2.5rem 0 1.5rem 0;
      background-size: cover;
      background-position: center;
    }

    .footer-container {
      padding: 0 1.5rem;
    }

    .footer-main-grid {
      grid-template-columns: 1fr;
      gap: 2rem;
    }

    .footer-brand {
      justify-content: center;
      padding: 0 0 1.5rem 0;
      border-bottom: 1px solid rgba(0, 169, 224, 0.2);
    }

    .footer-logo {
      width: 120px;
    }

    .footer-content {
      grid-template-columns: repeat(2, 1fr);
      gap: 2rem;
      margin-left: 0;
      margin-top: 0;
    }

    .footer-column {
      padding-right: 0.5rem;
    }

    .footer-column-title {
      font-size: 0.9rem;
      margin-bottom: 1rem;
    }

    .footer-links a {
      font-size: 0.85rem;
    }

    .footer-bottom-container {
      flex-direction: column;
      gap: 1.5rem;
      text-align: center;
      margin-top: 1.5rem;
      padding-top: 1.5rem;
    }

    .footer-legal-links {
      gap: 1rem;
      flex-wrap: wrap;
    }

    .footer-legal-links a {
      font-size: 0.8rem;
    }

    .footer-bottom-right {
      margin-right: 0;
      flex-direction: column;
      gap: 1rem;
    }

    .nob-logo {
      position: static;
      transform: none;
      margin-top: 0.5rem;
      display: flex;
      justify-content: center;
    }

    .nob-icon {
      color: white;
      background: rgba(0, 169, 224, 0.1);
      padding: 6px 10px;
      border-radius: 6px;
    }
  }

  @media (max-width: 480px) {
    .site-footer {
      padding: 0.5rem 0 0 0;
    }

    .footer-main {
      border-radius: 0;
      padding: 2rem 0 1rem 0;
    }

    .footer-container {
      padding: 0 1rem;
    }

    .footer-main-grid {
      gap: 1.5rem;
    }

    .footer-brand {
      padding: 0 0 1rem 0;
    }

    .footer-logo {
      width: 100px;
    }

    .footer-content {
      gap: 1.5rem;
    }

    .footer-column {
      text-align: center;
      padding: 0.5rem 0;
    }

    .footer-column-title {
      font-size: 0.85rem;
      margin-bottom: 0.8rem;
    }

    .footer-links a {
      font-size: 0.8rem;
    }

    .footer-links a::before {
      display: none;
    }

    .footer-links a:hover {
      padding-left: 0;
      color: #00a9e0;
    }

    .footer-bottom-container {
      gap: 1rem;
      margin-top: 1rem;
      padding-top: 1rem;
    }

    .footer-legal-links {
      gap: 0.8rem;
      flex-direction: column;
    }

    .footer-legal-links a {
      font-size: 0.75rem;
    }

    .copyright {
      font-size: 0.8rem;
    }

    .follow-text {
      font-size: 0.8rem;
    }

    .social-links {
      gap: 0.6rem;
    }

    .social-link {
      width: 32px;
      height: 32px;
    }

    .social-link svg {
      width: 16px;
      height: 16px;
    }
  }

  /* === SERUVEN SAYFASI HERO SECTION === */
  .seruven-hero-section {
    background: #001b48;
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    margin-top: -120px;
    padding-top: 120px;
  }

  .seruven-hero-container {
    max-width: 1400px;
    padding: 0 4%;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 2;
  }

  .seruven-hero-content {
    color: white;
  }

  .seruven-hero-title {
    font-size: 4rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.2;
    background: linear-gradient(45deg, #ffffff, #e8fdff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
  }

  .seruven-hero-description {
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 2.5rem;
    color: rgba(255, 255, 255, 0.9);
    max-width: 500px;
  }

  .seruven-hero-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
  }

  .seruven-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    border: none;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
  }

  .seruven-btn.primary {
    background: linear-gradient(45deg, #0391d0, #0eb6da);
    color: white;
  }

  .seruven-btn.primary:hover {
    background: linear-gradient(45deg, #0eb6da, #0391d0);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(3, 145, 208, 0.4);
  }

  .seruven-btn.secondary {
    background: rgba(255, 255, 255, 0.1);
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.3);
  }

  .seruven-btn.secondary:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.5);
    transform: translateY(-2px);
  }

  .seruven-btn i {
    font-size: 1.2rem;
  }

  /* Visual Elements */
  .seruven-hero-visual {
    position: relative;
    height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .seruven-visual-circle {
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(3, 145, 208, 0.3), rgba(14, 182, 218, 0.3));
    border: 2px solid rgba(255, 255, 255, 0.2);
    position: relative;
    animation: seruvenFloat 6s ease-in-out infinite;
  }

  .seruven-visual-elements {
    position: absolute;
    width: 100%;
    height: 100%;
  }

  .seruven-element {
    position: absolute;
    border-radius: 50%;
    background: linear-gradient(45deg, #0391d0, #0eb6da);
    box-shadow: 0 4px 15px rgba(3, 145, 208, 0.3);
  }

  .seruven-element.element-1 {
    width: 40px;
    height: 40px;
    top: 20%;
    right: 10%;
    animation: seruvenRotate 8s linear infinite;
  }

  .seruven-element.element-2 {
    width: 25px;
    height: 25px;
    bottom: 30%;
    left: 15%;
    animation: seruvenRotate 10s linear infinite reverse;
  }

  .seruven-element.element-3 {
    width: 30px;
    height: 30px;
    top: 60%;
    right: 20%;
    animation: seruvenFloat 4s ease-in-out infinite;
  }

  /* Animations */
  @keyframes seruvenFloat {
    0%, 100% {
      transform: translateY(0);
    }
    50% {
      transform: translateY(-20px);
    }
  }

  @keyframes seruvenRotate {
    0% {
      transform: rotate(0deg) translateX(50px) rotate(0deg);
    }
    100% {
      transform: rotate(360deg) translateX(50px) rotate(-360deg);
    }
  }

  /* Serüven Sayfası Stilleri */
  .seruven-hero-section {
      background-color: #001b48;
      position: relative;
      padding: 120px 80px;
      overflow: hidden;
      color: white;
      min-height: 38em;
      display: flex;
      align-items: center;
  }

  .seruven-hero-section::before {
      content: '';
      position: absolute;
      bottom: -2%;
      right: -1px;
      width: 50%;
      height: 45%;
      background-color: #ffffff;
      border-top-left-radius: 40px;
      border-bottom-right-radius: 27px;
      z-index: 1;
  }

  .seruven-hero-container {
      position: relative;
      z-index: 2;
      width: 100%;
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 4rem;
      align-items: center;
  }

  .seruven-hero-content {
      max-width: 650px;
      padding-top: 31%;
  }

  .seruven-hero-subtitle {
      font-size: 28px;
      font-weight: 500;
      letter-spacing: 1px;
      margin-bottom: 0;
      color: #1B9AD6;
      text-transform: uppercase;
      position: relative;
      top: 62px;
  }

  .seruven-hero-title {
      font-size: 85px;
      font-weight: 700;
      margin-bottom: 10px;
      line-height: 1.6;
      color: #DEFFFB;
  }

  .seruven-hero-description {
      font-size: 18px;
      line-height: 1.6;
      opacity: 0.8;
      max-width: 550px;
      color: #DEFFFB;
  }

  .seruven-hero-offset-box-container {
      display: block;
      position: absolute;
      bottom: 5%;
      right: 5%;
      width: 40%;
      z-index: 3;
      color: #001d55;
      padding: 2rem;
      z-index: 12312321;
  }

  .seruven-hero-offset-box-container h3 {
      font-size: 1.5rem;
      font-weight: 700;
      margin-bottom: 1rem;
  }

  .seruven-hero-offset-box-container p {
      font-size: 0.9rem;
      line-height: 1.6;
  }

  /* Önceki clip-path ve dalga stilleri kaldırıldı */

  /* Container için relative position */
  .seruven-hero-offset-box-container {
    position: relative;
    min-height: 400px;
  }

  .filter-customization-box {
    border-radius: 20px;
    padding: 20px;
    border: 1px solid #BFFFFA33;
    position: absolute;
    top: 74%;
    left: 30%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 200px;
    backdrop-filter: blur(9px) brightness(1.5);
    background-color: #DEFFFB; /* Fill Opacity */

    box-shadow: 0 8px 32px #DEFFFB; /* ya da 0 0 30px rgba(222,255,251,0.4) */
    overflow: hidden;
    z-index: 2;
  }


  .filter-content {
    flex: 1;
    color: #2c3e50;
    max-width: 50%;
  }

  .filter-title {
    font-size: 2rem;
    font-weight: bold;
    margin: 0 0 15px 0;
    line-height: 1.2;
    color: #2c3e50;
  }

  .filter-description {
    font-size: 0.9rem;
    margin: 0 0 20px 0;
    color: #5a6c7d;
    line-height: 1.5;
  }

  .filter-button {
    background: #5B9BD5;
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 1px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
  }

  .filter-button:hover {
    background: #4A90E2;
    transform: translateY(-2px);
  }

  .phone-mockup {
    position: relative;
    margin: 0 50px;
    width: 300px;
    height: 300px;
  }

  .phone-mockup lottie-player {
    width: 100%;
    height: 100%;
    object-fit: contain;
  }

  .phone-frame {
    width: 140px;
    height: 280px;
    background: #2C5282;
    border: 6px solid #5B9BD5;
    border-radius: 25px;
    position: relative;
    overflow: hidden;
  }

  .phone-frame:before {
    content: '';
    position: absolute;
    top: 15px;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 4px;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 2px;
  }

  .phone-screen {
    padding: 25px 15px;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 20px;
  }

  .filter-option {
    position: relative;
    display: flex;
    align-items: center;
    padding: 10px 0;
  }

  .filter-bar {
    width: 100%;
    height: 4px;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 2px;
    position: relative;
  }

  .filter-slider {
    width: 16px;
    height: 16px;
    background: rgba(255, 255, 255, 0.6);
    border-radius: 50%;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    left: 30%;
    cursor: pointer;
    transition: all 0.3s ease;
  }

  .filter-slider.active {
    background: #FFFFFF;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
  }

  .settings-button {
    position: absolute;
    bottom: -4px;
    right: 109px;
    border: none;
    z-index: 12312312;
    width: 55px;
    height: 55px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    background-color: transparent;
  }


  @media (max-width: 992px) {
      .seruven-hero-section {
          padding: 80px 40px 60px;
          text-align: center;
          min-height: auto;
          display: block; /* Flex'i kaldırıp basit blok düzenine geçiyoruz. */
          align-items: initial; /* align-items'i sıfırlıyoruz */
      }

      .seruven-hero-container {
         display: block; /* Grid'i kaldırıp basit blok düzenine geçiyoruz. */
         gap: initial; /* gap'i sıfırlıyoruz */
         text-align: center;
         padding: 0;
      }
      .seruven-hero-content {
          padding-top: 0;
          max-width: 100%;
          width: 100%;
      }
      .seruven-hero-subtitle {
          top: 0;
          font-size: 20px;
          margin-bottom: 1rem;
      }
      .seruven-hero-title {
          font-size: 60px;
      }
      .seruven-hero-description {
          max-width: 600px;
          margin-left: auto;
          margin-right: auto;
      }
      .seruven-hero-section::before {
          display: none;
      }
      .seruven-hero-offset-box-container {
          position: relative; /* Mutlak konumlandırmayı kaldırıyoruz. */
          display: block;
          /* Konumlandırma sıfırlamaları */
          top: auto;
          bottom: auto;
          left: auto;
          right: auto;

          /* Yeni düzen özellikleri */
          width: 100%;
          max-width: 600px;
          margin: 40px auto 0; /* Üstten boşluk ve otomatik merkezleme */
          padding: 0;
          z-index: 2;
          color: #001d55;
      }
      .filter-customization-box {
          position: relative;
          top: auto;
          left: auto;
          width: 100%;
          max-width: 600px;
          margin: 0 auto;
          backdrop-filter: blur(9px) brightness(1.1);
          background-color: #001b48;
          color: #FFFFFF;
          box-shadow: none;
          border: 0;
      }

      .filter-customization-box .filter-title,
      .filter-customization-box .filter-description {
          color: #FFFFFF;
      }
  }


  @media (max-width: 768px) {
      .seruven-hero-section {
          padding: 120px 30px 60px 30px;
      }

      .seruven-hero-title {
          font-size: 48px;
      }
      .seruven-hero-subtitle {
          font-size: 18px;
      }
      .seruven-hero-description {
          font-size: 15px;
      }
      .filter-customization-box {
          flex-direction: column;
          gap: 20px;
          text-align: center;
          border: 0;
      }
      .filter-content {
          max-width: 100%;
      }
  }

  @media (max-width: 480px) {
      .seruven-hero-section {
          padding: 100px 20px 40px 20px;
      }
      .seruven-hero-title {
          font-size: 40px;
      }
      .seruven-hero-subtitle {
          font-size: 16px;
      }
  }

  @media (max-width: 1512px) {
      .seruven-hero-section {
          padding: 80px 40px 60px;
          text-align: center;
          min-height: auto;
          display: block;
          align-items: initial;
      }
      .seruven-hero-container {
         display: grid;
         gap: initial;
         text-align: center;
         padding: 0;
      }
      .settings-button{
        display: none;
      }
      .phone-mockup{
        margin:0;
      }
      .seruven-hero-content {
          padding-top: 0;
          max-width: 100%;
          width: 100%;
      }
      .seruven-hero-subtitle {
          top: 0;
          font-size: 20px;
          margin-bottom: 1rem;
      }
      .seruven-hero-title {
          font-size: 60px;
      }
      .seruven-hero-description {
          max-width: 600px;
          margin-left: auto;
          margin-right: auto;
      }
      .seruven-hero-section::before {
          display: none;
      }
      .seruven-hero-offset-box-container {
          position: relative;
          display: block;
          top: auto;
          bottom: auto;
          left: auto;
          right: auto;
          width: 100%;
          max-width: 600px;
          margin: 40px auto 0;
          padding: 0;
          z-index: 2;
          color: #001d55;
      }
      .filter-customization-box {
          position: relative;
          top: auto;
          left: auto;
          width: 100%;
          max-width: 600px;
          margin: 0 auto;
          backdrop-filter: blur(9px) brightness(1.1);
          background-color: #001b48;
          color: #FFFFFF;
          box-shadow: none;
          border: 0;
      }
      .filter-customization-box .filter-title,
      .filter-customization-box .filter-description {
          color: #FFFFFF;
      }
  }

  /* iPad Özel Düzeltmeleri */
  @media (min-width: 768px) and (max-width: 1024px) {
      .seruven-hero-section {
          padding: 60px 30px 40px;
          min-height: 70vh;
      }

      /* iPad için timeline scroll düzeltmeleri */
      .ads-section-seruvenler {
          -webkit-overflow-scrolling: touch;
          overflow-x: hidden;
          position: relative;
      }

      .seruven-hero-title {
          font-size: 50px;
          margin-bottom: 20px;
      }

      .seruven-hero-subtitle {
          font-size: 18px;
      }

      .seruven-hero-description {
          font-size: 16px;
          max-width: 500px;
          margin-bottom: 30px;
      }

      .filter-customization-box {
          display: flex;
          flex-direction: row;
          align-items: center;
          min-height: 180px;
          padding: 20px;
          gap: 20px;
          border-radius: 15px;
      }

      .filter-content {
          flex: 1;
          max-width: 60%;
      }

      .filter-title {
          font-size: 1.8rem;
          line-height: 1.1;
      }

      .filter-description {
          font-size: 0.85rem;
          margin-bottom: 15px;
      }

      .phone-mockup {
          width: 200px;
          height: 200px;
          margin: 0 20px 0 0;
      }

      .settings-button {
          width: 50px;
          height: 50px;
          bottom: -2px;
          right: 80px;
      }

      /* Timeline için iPad düzeltmeleri */
      .ads-section-seruvenler {
          padding: 40px 20px;
      }

      .ads-timeline {
          flex-direction: column;
          gap: 30px;
      }

      .ads-timeline-sticky {
          position: relative;
          top: auto;
          height: auto;
          padding: 0;
      }

      .ads-years-viewer {
          display: flex;
          justify-content: center;
          gap: 20px;
          margin-bottom: 20px;
      }

      .ads-year-item {
          padding: 10px 20px;
          border-radius: 25px;
          cursor: pointer;
          transition: all 0.3s ease;
          background: rgba(255, 255, 255, 0.1);
          color: #fff;
          border: 2px solid transparent;
      }

      .ads-year-item.active {
          background: #0391d0;
          border-color: #0391d0;
          color: #fff;
      }

      .ads-year-item.previous {
          background: rgba(3, 145, 208, 0.3);
          border-color: rgba(3, 145, 208, 0.5);
      }

      .ads-timeline-content {
          width: 100%;
      }

      .ads-content-item {
          opacity: 0.5;
          transform: translateY(20px);
          transition: all 0.5s ease;
          margin-bottom: 30px;
          padding: 20px;
          border-radius: 10px;
          background: rgba(255, 255, 255, 0.05);
      }

      .ads-content-item.active {
          opacity: 1;
          transform: translateY(0);
          background: rgba(255, 255, 255, 0.1);
      }

      .ads-content-title-h3 {
          font-size: 1.4rem;
          margin-bottom: 15px;
      }

      .ads-content-p2 {
          font-size: 0.9rem;
          line-height: 1.5;
      }
  }

  /* iPad Portrait */
  @media (min-width: 768px) and (max-width: 1024px) and (orientation: portrait) {
      .seruven-hero-section {
          min-height: 40vh;
          height: 65vh;
          padding: 80px 40px 50px;
      }

      .seruven-hero-title {
          font-size: 55px;
      }

      .filter-customization-box {
          flex-direction: row;
          text-align: center;
          min-height: 250px;
          padding: 25px;
      }
.settings-button{
    display: none;
}
      .filter-content {
          max-width: 100%;
          margin-bottom: 20px;
      }

      .phone-mockup {
          width: 250px;
          height: 250px;
          margin: 20px 0;
      }

      .settings-button {
          right: 50%;
          transform: translateX(50%);
          bottom: -10px;
      }
  }

  /* Mobil Cihazlar için */
  @media (max-width: 767px) {
      .seruven-hero-section {
          padding: 120px 30px 60px 30px;
          min-height: auto;
          display: block;
          align-items: initial;
      }

      .seruven-hero-container {
          display: block;
          gap: initial;
          text-align: center;
          padding: 0;
      }

      .seruven-hero-content {
          padding-top: 0;
          max-width: 100%;
          width: 100%;
      }

      .seruven-hero-title {
          font-size: 48px;
      }

      .seruven-hero-subtitle {
          font-size: 18px;
          top: 0;
          margin-bottom: 1rem;
      }

      .seruven-hero-description {
          font-size: 15px;
          max-width: 600px;
          margin-left: auto;
          margin-right: auto;
      }

      .seruven-hero-section::before {
          display: none;
      }

      .seruven-hero-offset-box-container {
          position: relative;
          display: block;
          top: auto;
          bottom: auto;
          left: auto;
          right: auto;
          width: 100%;
          max-width: 600px;
          margin: 40px auto 0;
          padding: 0;
          z-index: 2;
          color: #001d55;
      }

      .filter-customization-box {
          position: relative;
          top: auto;
          left: auto;
          width: 100%;
          max-width: 600px;
          margin: 0 auto;
          backdrop-filter: blur(9px) brightness(1.1);
          background-color: #001b48;
          color: #FFFFFF;
          box-shadow: none;
          border: 0;
          flex-direction: column;
          gap: 20px;
          text-align: center;
      }

      .filter-customization-box .filter-title,
      .filter-customization-box .filter-description {
          color: #FFFFFF;
      }

      .filter-content {
          max-width: 100%;
      }
  }

  @media (max-width: 480px) {
      .seruven-hero-section {
          padding: 100px 20px 40px 20px;
      }

      .seruven-hero-title {
          font-size: 40px;
      }

      .seruven-hero-subtitle {
          font-size: 16px;
      }
  }

  @media (max-width: 992px) {
      .seruven-hero-container {
          grid-template-columns: 1fr;
          gap: 2rem;
      }
      .seruven-hero-offset-box-container {
          margin: 0 auto;
          max-width: 600px;
      }
  }

  /* iPad Landscape */
  @media (min-width: 768px) and (max-width: 1024px) and (orientation: landscape) {
      .seruven-hero-section {
          min-height: 90vh;
          padding: 40px 30px 30px;
      }

      .seruven-hero-title {
          font-size: 45px;
          margin-bottom: 15px;
      }

      .seruven-hero-description {
          font-size: 15px;
          margin-bottom: 25px;
      }

      .filter-customization-box {
          min-height: 160px;
          padding: 15px;
          gap: 15px;
      }

      .filter-title {
          font-size: 1.5rem;
      }

      .phone-mockup {
          width: 180px;
          height: 180px;
      }

      /* Timeline kompakt görünüm */
      .ads-section-seruvenler {
          padding: 30px 15px;
      }

      .ads-years-viewer {
          gap: 15px;
          margin-bottom: 15px;
      }

      .ads-year-item {
          padding: 8px 16px;
          font-size: 0.9rem;
      }

      .ads-content-item {
          padding: 15px;
          margin-bottom: 20px;
      }

      .ads-content-title-h3 {
          font-size: 1.2rem;
          margin-bottom: 10px;
      }

      .ads-content-p2 {
          font-size: 0.85rem;
          line-height: 1.4;
      }
  }

  /* === ANASAYFA ABOUT SECTION === */
  .anasayfa-about {
    padding: 80px 5%;
    margin-top: -25vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    min-height: 100vh;
    overflow: hidden;
    background-color: #f0f9ff;
  }

  .anasayfa-about-bg {
    position: absolute;
    /* Kesik efektinin tam bittiği noktada başla - JavaScript ile dinamik ayarlanacak */
    top: 35%; /* Varsayılan değer, JavaScript ile güncellenecek */
    left: 0;
    width: 100%;
    /* Kesik efektinin bittiği noktadan sayfa sonuna kadar - JavaScript ile dinamik ayarlanacak */
    height: 65%; /* Varsayılan değer, JavaScript ile güncellenecek */
    background-color: #008ace;
    z-index: 1;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  }

  .about-container {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 1650px;
    /* Mavi kesikle birebir yapışık olması için */
    margin-bottom: 0;
  }

  .about-main-card {
    position: relative;
    background-color: rgb(0, 27, 72);
    background-image: url('../img/kutu-walpaper.png');
    background-repeat: repeat;
    background-position: center 80%;
    background-attachment: fixed; /* Parallax efekti */
    background-size: cover; /* Parallax için daha iyi görünüm */
    /* Kesikli tasarıma uygun köşe yuvarlatma: tüm köşeler yuvarlatılmış */
    border-top-left-radius: 27px !important;
    border-top-right-radius: 27px !important;
    border-bottom-left-radius: 27px !important;
    border-bottom-right-radius: 27px !important;

    padding: 80px 60px;
    height: 38em;
    overflow: hidden; /* Kesik efekti için gerekli */
    /* Mavi kesikle birebir yapışık olması için */
    margin-bottom: 0;
  }
  .about-btn.primary-btn{text-decoration: none;}
  .about-btn.play-btn {text-decoration: none;}
  /* === KESİK (CUTOUT) EFEKTİ === */
  .about-main-card::before {
    content: '';
    position: absolute;
    top: -1px; /* Kenar yumuşatma için */
    right: -1px;
    width: 38%;
    height: 35%;
    background-color: #f0f9ff;
    border-bottom-left-radius: 40px; /* Kesik köşe yuvarlaklığını geri ekliyorum */
    border-top-right-radius: 27px; /* Ana kartın sağ üst köşesine uygun */
    z-index: 1;
  }

  .about-content-grid {
    position: relative;
    z-index: 2; /* İçeriğin kesiğin üstünde kalması için */
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 60px;
    align-items: center; /* Sütunları dikey olarak ortalar */
  }

  /* === SOL TARAF === */
  .about-left-content {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 600px;
    padding-top: 40px;
    padding-bottom: 40px;
    /* Sağ üst köşeyi yuvarla - kesikli tasarıma uygun */
    border-top-right-radius: 27px;
  }

  .about-text-section {
    margin-top: 0;
  }

  .about-text-section .about-title {
    color: white;
    font-size: 2.7rem;
    font-weight: 600;
    line-height: 1.25;
    margin: 0 0 20px 0;
  }

  .about-text-section .about-description {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.95rem;
    line-height: 1.6;
    max-width: 450px;
    margin: 0 0 35px 0;
  }

  .about-buttons { display: flex; align-items: center; gap: 15px; margin-top: 55px; }
  .about-btn { display: inline-flex; align-items: center; gap: 8px; border: none; cursor: pointer; padding: 12px 28px; border-radius: 50px; font-weight: 600; font-size: 0.9rem; transition: all 0.3s ease; }
  .about-btn .material-icons { font-size: 1.2rem; }
  .about-btn.primary-btn { background: linear-gradient(90deg, #0391d0, #0eb6da); color: white; }
  .about-btn.primary-btn:hover { background: #0095c7; transform: translateY(-2px); }
  .about-btn.play-btn { background: #dcfce7; color: #001b48; }
  .about-btn.play-btn:hover { background: #cbf7da; transform: translateY(-2px); }

  .about-stats {
    display: flex;
    align-items: center;
    gap: 50px;
    max-width: 500px;
    margin-top: -30px;
  }
  .stat-item {
    position: relative;
    padding: 0;
    width: 120px;
    text-align: left;
  }
  .stat-item:not(:first-child)::before {
      content: '';
      position: absolute;
      left: -32px;
      top: 6%;
      transform: translateY(-50%);
      width: 1px;
      height: 134px;
      background: rgba(255, 255, 255, 0.3);
  }
  .stat-number {
    color: #008ace;
    font-size: 2.6rem;
    font-weight: 100;
    margin-bottom: 5px;
  }
  .stat-label {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
  }

  /* === SAĞ TARAF (FİLTRE KARTI) === */
  .about-right-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-height: 600px;
  }
    .filter-card-content {
      background: #008ace5e;
      border-radius: 7px;
      padding: 25px;
      position: relative;
      overflow: hidden;
      width: 100%;
      max-width: min(370px, calc(100vw - 40px));
      min-width: 280px;
      height: 265px;
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 15px;
      align-items: stretch;
      margin-top: 232px;
      margin-left: auto;
      margin-right: auto;
      box-shadow: 0 8px 32px rgba(0, 138, 206, 0.2),
                  0 4px 16px rgba(0, 138, 206, 0.1);
    }

    .filter-card-content::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      bottom: 0;
      background-image: url('../img/kutu-walpaper.png');
      background-repeat: repeat;
      background-position: center 40%;
      filter: blur(9px);
      z-index: -1;
    }

  /* Sol sütun - metin içerikleri */
  .filter-card-left {
    display: flex;
    flex-direction: column;
    justify-content: space-between; /* İçeriği dikeyde dağıtarak butonu aşağıya iter */
    position: relative;
    z-index: 2;
    margin-top: -2em;
  }

  /* Sağ sütun - animasyon */
  .filter-card-right {
    display: flex;
    align-items: center; /* Animasyonu dikeyde ortalar */
    justify-content: center; /* Animasyonu yatayda ortalar */
    position: relative;
    width: 250px;
    height: 250px;
    z-index: 2;
  }

  /* Lottie Player animasyonu normal flow'da */
  .filter-card-content lottie-player {
    width: 220px !important;
    height: 220px !important;
    opacity: 0.9;
  }

  .filter-card-header {
    width: 100%;
    margin-bottom: 0;
  }

  .filter-card-title {
    color: white;
    font-size: 1.8rem;
    line-height: 1.25;
    width:100%;
    font-weight: 600;
    margin-bottom: 12px;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.5);
  }

  .filter-card-icon img {
    width: 50px;
    height: auto;
    margin-top: -5px;
  }

  .filter-card-description {
      color: rgba(255, 255, 255, 0.9);
      font-size: 0.8rem;
      line-height: 2.6;
      margin-bottom: 0;
      width: 100%;
      text-shadow: 0 1px 4px rgba(0, 0, 0, 0.4);
  }

  .filter-card-btn {
      background: #008ace;
      color: #001b48;
      width: 38px;
      height: 38px;
      /* border-radius: 10px; */
      border: none;
      cursor: pointer;
      display: flex;
      align-items: center;
      justify-content: center;
      transition: transform 0.3s ease;}

  .filter-card-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(220, 252, 231, 0.3);
  }

  .filter-card-btn .material-icons {
    font-size: 1.1rem;
    text-shadow: none;
    position: relative;
    z-index: 3;
  }

  /* === FLOATING ACTION BUTTON === */
  .floating-action-btn {
      position: absolute;
      bottom: 18px;
      right: -3px;
          width: 55px;
      height: 55px;
      background: #00a9e0;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      color: white;
      cursor: pointer;
      box-shadow: 0 10px 30px -5px rgba(0, 169, 224, 0.6);
      transition: all 0.3s ease;
      transform: translateX(-50%);
      z-index: 3;
  }

  .floating-action-btn:hover { transform: translateX(-50%) translateY(-2px); box-shadow: 0 12px 35px -5px rgba(0, 169, 224, 0.7); }

  .floating-action-btn .material-icons,
  .floating-action-btn i {
    text-shadow: none;
    font-size: 1.5rem;
    z-index: 4;
  }

  /* Material Icons Genel Koruma */
  .material-icons {
    font-family: 'Material Icons';
    font-weight: normal;
    font-style: normal;
    font-size: 1rem;
    line-height: 1;
    letter-spacing: normal;
    text-transform: none;
    display: inline-block;
    white-space: nowrap;
    word-wrap: normal;
    direction: ltr;
    -webkit-font-feature-settings: 'liga';
    -webkit-font-smoothing: antialiased;
  }

  /* === RESPONSIVE === */

  /* 1000px-1200px arası tüm ekranlar için tutarlı davranış */
  @media (max-width: 1200px) and (min-width: 1000px) {
    .about-content-grid {
      gap: 30px;
    }

    .filter-card-content {
      max-width: 320px;
      min-width: 280px;
      padding: 20px;
      height: auto;
      min-height: 240px;
      margin-top: 180px;
    }

    .filter-card-content lottie-player {
      width: 180px !important;
      height: 180px !important;
    }

    .filter-card-title {
      font-size: 1.6rem;
    }

    .filter-card-description {
      font-size: 0.75rem;
      line-height: 1.4;
    }
  }

  /* Tablet boyutları - Layout korunur, sadece boyutlar küçülür */
  @media (max-width: 1200px) and (min-width: 769px) {
    .anasayfa-about {
      padding: 70px 5%;
      margin-top: -15vh; /* Video ile çakışmaması için biraz azaltıldı */
    }

    .about-main-card {
      padding: 60px 40px;
      height: auto;
      min-height: 35em;
    }

    .about-content-grid {
      gap: 40px;
    }

    .about-left-content {
      min-height: 500px;
      padding-top: 30px;
      padding-bottom: 30px;
    }

    .about-text-section .about-title {
      font-size: 2.2rem;
    }

    .about-text-section .about-description {
      font-size: 0.9rem;
      max-width: 400px;
    }

    .about-stats {
      gap: 35px;
    }

    .stat-number {
      font-size: 2.2rem;
    }

    /* Filter kartını sabit tut - responsive değişiklik yok */

    .floating-action-btn {
      width: 50px;
      height: 50px;
      bottom: 15px;
    }
  }
  @media screen and  (max-width: 769px) {
    .filter-card-content {
      margin-top: 10px !important;
    }

  }

  /* 1024px'den sonra layout değişimi - right content aşağıya */
  @media (max-width: 1024px) {
    .about-content-grid {
      display: flex;
      flex-direction: column;
      gap: 25px;
    }

    .about-left-content {
      min-height: auto;
      padding: 0;
      order: 1;
    }

    .about-right-content {
      order: 2;
      min-height: auto;
      display: flex;
      justify-content: center;
    }

    .about-text-section .about-title {
      text-align: center;
    }

    .about-text-section .about-description {
      text-align: center;
      max-width: 100%;
    }

    .about-buttons {
      justify-content: center;
    }

    .about-stats {
      justify-content: center;
      align-items: center;
      gap: 25px;
      margin: 30px auto 0 auto;
      padding-top: 25px;
      border-top: 1px solid rgba(255, 255, 255, 0.2);
      width: 100%;
      max-width: 600px;
    }

    .stat-item {
      text-align: center;
      padding: 0;
    }

    .stat-item:not(:first-child)::before {
      display: none;
    }

    .filter-card-content {
      margin-top: 10px !important;
      max-width: min(370px, calc(100vw - 40px));
      min-width: 280px;
      height: auto;
      min-height: 240px;
      padding: 25px;
    }
  }

  /* Küçük tablet boyutları - Layout hala korunur */
  @media (max-width: 768px) and (min-width: 481px) {
    .anasayfa-about {
      padding: 50px 5%;
      margin-top: 2vh !important;
    }

    .info-feature-section {
      margin: -8vh auto 0 !important;
    }

    .about-main-card {
      padding: 40px 25px;
      height: auto;
      min-height: auto;
      border-radius: 20px !important; /* Cutout yerine normal yuvarlatma */
      overflow: visible;
    }

    /* Tablet boyutunda da cutout kaldır */
    .about-main-card::before {
      display: none !important;
    }

    .about-text-section .about-title {
      font-size: 2rem;
      text-align: center;
    }

    .about-text-section .about-description {
      font-size: 0.9rem;
      max-width: 100%;
      text-align: center;
    }

    .about-buttons {
      justify-content: center;
      gap: 15px;
    }

    .about-stats {
      justify-content: center;
      gap: 25px;
      margin-top: 30px;
      padding-top: 25px;
      border-top: 1px solid rgba(255, 255, 255, 0.2);
    }

    .stat-item {
      text-align: center;
      padding: 0;
    }

    .stat-item:not(:first-child)::before {
      display: none;
    }

    .stat-number {
      font-size: 2rem;
    }

    .stat-label {
      font-size: 0.85rem;
    }

    /* Filter kartını sabit tut - responsive değişiklik yok */

    .floating-action-btn {
      display: none; /* Tablet boyutunda da gizle */
    }
  }

  /* Mobil boyutlar - Tamamen yeniden tasarlanmış */
  @media (max-width: 480px) {
    .anasayfa-about {
      padding: 40px 0;
      margin-top: -5.2vh !important;
      background-color: #f0f9ff;
    }

    .info-feature-section {
      margin: 0 auto;
    }

    .anasayfa-about-bg {
      display: none; /* Mobilde arka plan rengini kaldır */
    }

    .about-container {
      padding: 0 20px;
    }

    .about-main-card {
      padding: 30px 20px;
      height: auto;
      min-height: auto;
      background-attachment: scroll;
      background-size: cover;
      border-radius: 20px !important; /* Mobilde normal yuvarlatma */
      overflow: visible; /* Cutout için gerekmez artık */
    }

    /* Mobilde cutout efektini tamamen kaldır */
    .about-main-card::before {
      display: none !important;
    }

    .about-content-grid {
      display: flex;
      flex-direction: column;
      gap: 25px;
    }

    .about-left-content {
      min-height: auto;
      padding: 0;
      order: 1;
    }

    .about-right-content {
      order: 2;
      min-height: auto;
      display: flex;
      justify-content: center;
    }

    .about-text-section .about-title {
      font-size: 1.8rem;
      margin-bottom: 15px;
      text-align: center;
    }

    .about-text-section .about-description {
      font-size: 0.9rem;
      max-width: 100%;
      margin-bottom: 25px;
      text-align: center;
    }

    .about-buttons {
      justify-content: center;
      flex-wrap: wrap;
      gap: 12px;
      margin-top: 25px;
    }

    .about-btn {
      justify-content: center;
      padding: 12px 24px;
      font-size: 0.9rem;
      min-width: 140px;
    }

    .about-stats {
      justify-content: center;
      flex-wrap: wrap;
      gap: 20px;
      text-align: center;
      margin-top: 30px;
      padding-top: 25px;
      border-top: 1px solid rgba(255, 255, 255, 0.2);
    }

    .stat-item {
      width: auto;
      text-align: center;
      padding: 0;
      min-width: 80px;
    }

    .stat-item:not(:first-child)::before {
      display: none;
    }

    .stat-number {
      font-size: 1.8rem;
    }

    .stat-label {
      font-size: 0.8rem;
    }

    /* Mobilde filter kartını sabit tut - sadece margin-top ayarla */
    .filter-card-content {
      margin-top: 10px !important;
    }

    /* Floating action button mobilde farklı konumda */
    .floating-action-btn {
      display: none; /* Mobilde gizle, çok karışık oluyor */
    }
  }

  .floating-action-btn:hover { transform: translateX(-50%) translateY(-2px); box-shadow: 0 12px 35px -5px rgba(0, 169, 224, 0.7); }

  .floating-action-btn .material-icons,
  .floating-action-btn svg {
    transition: transform 0.4s cubic-bezier(0.2, 0.8, 0.2, 1);
  }

  .material-icons {
      font-family: 'Material Icons';
      font-weight: normal;
      font-style: normal;
      font-size: 24px;  /* Preferred icon size */
      display: inline-block;
      line-height: 1;
      text-transform: none;
      letter-spacing: normal;
      word-wrap: normal;
      white-space: nowrap;
      direction: ltr;

      /* Support for all WebKit browsers. */
      -webkit-font-smoothing: antialiased;
      /* Support for Safari and Chrome. */
      text-rendering: optimizeLegibility;

      /* Support for Firefox. */
      -moz-osx-font-smoothing: grayscale;

      /* Support for IE. */
      font-feature-settings: 'liga';
  }

  /* === Anasayfa Product Section === */
  .anasayfa-product {
    background-color: #008ACE;
    overflow: hidden;
    padding: clamp(40px, 6vw, 80px) clamp(20px, 5vw, 40px);
  }

  .anasayfa-product-container {
    max-width: 1440px;
    margin: 0 auto;
    border: 1px solid rgba(222, 255, 251, 0.3);
    border-radius: clamp(20px, 3vw, 39px);
    padding: clamp(30px, 5vw, 60px) clamp(20px, 4vw, 40px);
    position: relative;
    transition: all 0.3s ease;
  }

  .anasayfa-product-header {
    text-align: center;
    color: #fff;
    margin-bottom: clamp(25px, 4vw, 40px);
    position: relative;
    z-index: 2;
  }

  .anasayfa-product-title {
    font-size: clamp(1.8rem, 4vw, 2.5rem);
    font-weight: 100;
    margin: 0 0 15px 0;
    line-height: 1.2;
  }

  .anasayfa-product-subtitle {
    font-size: clamp(0.9rem, 1.5vw, 1rem);
    max-width: 550px;
    margin: 0 auto;
    line-height: 1.6;
    opacity: 0.9;
  }

  .anasayfa-product-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(300px, 100%), 1fr));
    gap: clamp(15px, 3vw, 30px);
    position: relative;
    z-index: 2;
    justify-items: center;
  }

  .product-card-item {
    background-color: #E5FBFD;
    border: 1px solid #eafcff;
    border-radius: clamp(16px, 2vw, 24px);
    padding: clamp(20px, 3vw, 30px);
    width: 100%;
    max-width: 640px;
    min-width: 280px;
    box-sizing: border-box;
    position: relative;
    overflow: hidden;
    color: #001d55;
    transition: all 0.3s ease-out;
    aspect-ratio: 1.2 / 1;
    min-height: clamp(300px, 40vw, 463px);
  }

  .product-card-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border-color: #d0f5ff;
  }

  .product-card-item-icon {
    font-size: clamp(1.5rem, 3vw, 2rem);
    font-weight: 300;
    color: #008ace;
    position: absolute;
    top: clamp(20px, 3vw, 30px);
    left: clamp(20px, 3vw, 30px);
    z-index: 1;
  }

  .product-card-item-title {
    font-size: clamp(1.5rem, 3.5vw, 2.25rem);
    font-weight: 100;
    margin: 0;
    position: absolute;
    top: clamp(45px, 6vw, 65px);
    left: clamp(35px, 5vw, 52px);
    z-index: 1;
    line-height: 1.1;
    max-width: 60%;
  }

  .product-card-item-image {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    pointer-events: none;
  }

  .product-card-item-image img {
    position: absolute;
    width: auto;
    max-width: none;
    object-fit: contain;
    transition: transform 0.4s cubic-bezier(0.2, 0.8, 0.2, 1);
  }

  /* Geniş olan Endüstriyel filtre için responsive ayar */
  #industrial-card .product-card-item-image img {
    height: 100%;
    right: clamp(-60%, -15vw, -46%);
    bottom: -32%;
  }

  /* Uzun olan Tarımsal filtre için responsive ayar */
  #agricultural-card .product-card-item-image img {
    height: clamp(65%, 22vw, 81%);
    right: clamp(-25%, -6vw, -18%);
    bottom: -5%;
  }

  .product-card-item:hover .product-card-item-image img {
    transform: scale(1.05) translateX(clamp(-30px, -2vw, -20px)) translateY(clamp(-25px, -2vw, -15px));
  }

  /* === ANASAYFA PRODUCT RESPONSIVE OPTIMIZASYONLARI === */

  /* Büyük ekranlar için ek optimizasyon */
  @media (min-width: 1700px) {
    .anasayfa-product-container {
      max-width: 1440px;
    }

    .anasayfa-product-cards {
      gap: 40px;
    }

    .product-card-item {
      max-width: 720px;
    }
  }

  /* Desktop ve Laptop optimizasyonu - mevcut tasarımı korur */
  @media (max-width: 1699px) and (min-width: 1024px) {
    .anasayfa-product-container {
      max-width: 1440px; /* Kullanıcının belirlediği değer korunuyor */
    }

    /* Tarımsal filtre görselinin yeni pozisyonu korunuyor */
    #agricultural-card .product-card-item-image img {
      bottom: -5%; /* Kullanıcının belirlediği değer korunuyor */
    }
  }

  /* Geniş ekranlar */
  @media (max-width: 1699px) and (min-width: 1200px) {
    .anasayfa-product-cards {
      grid-template-columns: repeat(2, 1fr);
      gap: clamp(20px, 3vw, 35px);
      max-width: 1400px;
      margin: 0 auto;
    }
  }

  /* Laptop boyutları */
  @media (max-width: 1199px) and (min-width: 900px) {
    .anasayfa-product {
      padding: clamp(30px, 5vw, 60px) clamp(15px, 4vw, 30px);
    }

    .anasayfa-product-container {
      padding: clamp(25px, 4vw, 50px) clamp(15px, 3vw, 30px);
    }

    .anasayfa-product-cards {
      grid-template-columns: repeat(2, 1fr);
      gap: clamp(15px, 2.5vw, 25px);
    }

    .product-card-item {
      min-height: clamp(280px, 35vw, 400px);
    }

    .product-card-item-title {
      font-size: clamp(1.3rem, 3vw, 2rem);
      max-width: 65%;
    }
  }

  /* Tablet boyutları - Laptop tasarımından güvenli geçiş */
  @media (max-width: 1023px) and (min-width: 600px) {
    .anasayfa-product {
      padding: clamp(30px, 5vw, 60px) clamp(15px, 4vw, 30px);
    }

    .anasayfa-product-container {
      max-width: 900px;
      padding: clamp(25px, 4vw, 50px) clamp(20px, 3vw, 35px);
    }

    .anasayfa-product-cards {
      grid-template-columns: 1fr;
      gap: clamp(20px, 4vw, 35px);
      max-width: 600px;
      margin: 0 auto;
    }

    .product-card-item {
      max-width: 100%;
      min-height: clamp(300px, 50vw, 400px);
      aspect-ratio: 1.3 / 1;
    }

    .product-card-item-title {
      font-size: clamp(1.5rem, 4.5vw, 2rem);
      max-width: 65%;
    }

    /* Endüstriyel filtre tablet optimizasyonu */
    #industrial-card .product-card-item-image img {
      height: 95%;
      right: clamp(-55%, -14vw, -40%);
      bottom: -28%;
    }

    /* Tarımsal filtre tablet optimizasyonu - laptop tasarımından uyarlama */
    #agricultural-card .product-card-item-image img {
      height: clamp(70%, 25vw, 85%);
      right: clamp(-22%, -6vw, -16%);
      bottom: -2%; /* Laptop tasarımına yakın konum */
    }
  }

  /* Mobil boyutlar - Tablet tasarımından güvenli geçiş */
  @media (max-width: 599px) {
    .anasayfa-product {
      padding: 35px 20px;
    }

    .anasayfa-product-container {
      max-width: 100%;
      padding: 30px 20px;
      border-radius: 20px;
      margin: 0 10px;
    }

    .anasayfa-product-title {
      font-size: clamp(1.6rem, 7vw, 2.2rem);
      margin-bottom: 12px;
    }

    .anasayfa-product-subtitle {
      font-size: clamp(0.9rem, 3.5vw, 1rem);
      margin-bottom: 25px;
    }

    .anasayfa-product-cards {
      grid-template-columns: 1fr;
      gap: 25px;
      max-width: 100%;
    }

    .product-card-item {
      max-width: 100%;
      min-height: 320px;
      aspect-ratio: 1.25 / 1;
      padding: 25px;
    }

    .product-card-item-icon {
      font-size: clamp(1.4rem, 4vw, 1.6rem);
      top: 25px;
      left: 25px;
    }

    .product-card-item-title {
      font-size: clamp(1.4rem, 6vw, 1.8rem);
      top: 50px;
      left: 40px;
      max-width: 70%;
      line-height: 1.15;
    }

    /* Endüstriyel filtre mobil optimizasyonu */
    #industrial-card .product-card-item-image img {
      height: 85%;
      right: clamp(-45%, -10vw, -30%);
      bottom: -22%;
    }

    /* Tarımsal filtre mobil optimizasyonu - laptop tasarımından uyarlama */
    #agricultural-card .product-card-item-image img {
      height: clamp(60%, 20vw, 75%);
      right: clamp(-18%, -4vw, -12%);
      bottom: 2%; /* Laptop tasarımına uygun konum */
    }

    .product-card-item:hover .product-card-item-image img {
      transform: scale(1.03) translateX(-8px) translateY(-8px);
    }
  }

  /* Çok küçük mobil ekranlar - Mobil tasarımından güvenli geçiş */
  @media (max-width: 400px) {
    .anasayfa-product {
      padding: 30px 15px;
    }

    .anasayfa-product-container {
      padding: 25px 15px;
      margin: 0 5px;
    }

    .anasayfa-product-title {
      font-size: clamp(1.4rem, 8vw, 1.8rem);
      margin-bottom: 10px;
    }

    .anasayfa-product-subtitle {
      font-size: clamp(0.85rem, 4vw, 0.95rem);
      margin-bottom: 20px;
    }

    .anasayfa-product-cards {
      gap: 20px;
    }

    .product-card-item {
      min-height: 280px;
      aspect-ratio: 1.2 / 1;
      padding: 20px;
    }

    .product-card-item-icon {
      font-size: clamp(1.2rem, 5vw, 1.4rem);
      top: 20px;
      left: 20px;
    }

    .product-card-item-title {
      font-size: clamp(1.2rem, 7vw, 1.5rem);
      top: 45px;
      left: 35px;
      max-width: 75%;
      line-height: 1.1;
    }

    /* Endüstriyel filtre küçük mobil optimizasyonu */
    #industrial-card .product-card-item-image img {
      height: 80%;
      right: clamp(-35%, -8vw, -20%);
      bottom: -18%;
    }

    /* Tarımsal filtre küçük mobil optimizasyonu - laptop tasarımından uyarlama */
    #agricultural-card .product-card-item-image img {
      height: clamp(55%, 18vw, 70%);
      right: clamp(-12%, -3vw, -8%);
      bottom: 5%; /* Laptop tasarımına uygun konum */
    }

    .product-card-item:hover .product-card-item-image img {
      transform: scale(1.02) translateX(-5px) translateY(-5px);
    }
  }

  @media (max-width: 1700px) and (min-width: 1441px) {
      .products-content {
          width: min(1200px, 80vw);
          height: 420px;
          max-width: 80vw;
          gap: 26px;
          padding: 18px 26px;
          transform: translateX(-6%);
      }

      .application-areas-content {
          width: min(750px, 58vw) !important;
          height: 305px;
          max-width: 58vw !important;
          gap: 24px !important;
          padding: 18px 24px !important;
          transform: translateX(-14%) !important;
      }

      .application-areas-content .products-categories {
          gap: 32px !important;
      }

      .application-areas-content .category-items {
          gap: 0 20px !important;
      }

      .dropdown:nth-child(2) .dropdown-content {
          left: max(-280px, calc(-35vw + 110px));
      }

      .dropdown:nth-child(2) .dropdown-content::before {
          left: min(330px, calc(35vw + 100px));
      }

      .dropdown:nth-child(3) .dropdown-content {
          left: max(-140px, calc(-20vw + 80px)) !important;
      }

      .dropdown:nth-child(3) .dropdown-content::before {
          left: min(200px, calc(20vw + 100px)) !important;
      }
  }

  /* === ANASAYFA PRODUCT RESPONSIVE TAMAMLANDI === */

  /* === FAQ SECTION === */
  .arkaplanli-section {
    position: relative;
    width: 100%;
    min-height: 3500px; /* Urun-gorsel için ekstra yükseklik */
    overflow: hidden;
    display: flex;
    flex-direction: column; /* FAQ ve ürün görseli alt alta gelsin */
    margin-top: -4em;
    z-index: 1;
    align-items: center;
    justify-content: flex-start;
    text-align: center;
  }
  /* ESKİ URUN-GORSEL-IMG STİLLERİ - ARTIK KULLANILMIYOR
  .urun-gorsel-img{
    width: 80% !important;
    display: block;
    margin: 0 auto;
    text-align: center;
    position: relative;
    left: 50%;
    transform: translateY(-100vh) translateX(17%);
    opacity: 0;
    transition: all 1.5s ease-out;
  }
  */

  /* ESKİ ANİMASYON STİLLERİ - ARTIK KULLANILMIYOR
  .urun-gorsel-img.animate {
    transform: translateY(0) translateX(17%);
    opacity: 1;
    object-fit: contain;
  }
  */

  /* ESKİ MOBİL UYUMLULUK STİLLERİ - ARTIK KULLANILMIYOR
  @media (max-width: 768px) {
    .urun-gorsel-img {
      width: 90% !important;
      transform: translateY(-50vh) translateX(17%);
      transition: all 1.2s ease-out;
    }

    .urun-gorsel-img.animate {
      transform: translateY(0) translateX(17%);
      object-fit: contain;
    }
  }

  @media (max-width: 480px) {
    .urun-gorsel-img {
      width: 95% !important;
      transform: translateY(-30vh) translateX(17%);
      transition: all 1s ease-out;
    }

    .urun-gorsel-img.animate {
      object-fit: contain;
    }
  }
  */
  .arkaplanli-section img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
  }

  /* İkinci layer - background-02.png */
  .arkaplanli-section::before {
    content: '';
    position: absolute;
    top: 12vw; /* Responsive top pozisyonu */
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('../img/backgorund-02.webp');
    background-size: contain;
    background-position: center bottom;
    background-repeat: no-repeat;
    z-index: 3;
    pointer-events: none;
  }

  @media (min-width: 1667px) {
    .arkaplanli-section::before {
      top: 200px;
    }
  }

  @media (max-width: 999px) {
    .arkaplanli-section::before {
      top: 120px;
    }
  }

  /* Sadece çok büyük ekranlarda contain olsun */
  @media (min-width: 1700px) {
    .arkaplanli-section img {
      object-fit: cover;
    }
  }

  /* Mobil ve küçük ekranlarda margin-top iptal olsun */
  @media (max-width: 1024px) {
    .arkaplanli-section {
      margin-top: 0;
    }
  }

  .faq-overlay {
    position: relative;
    z-index: 5; /* Urun-gorsel'in üstünde olsun */
    width: 3250px;
    max-width: 1536px;
    margin: 9px auto 0 auto;
    padding: 0px 5% 80px 5%;

    /* Flex içinde ilk sırada gelsin */
    order: 1;
    flex-shrink: 0;
  }

  .faq-container {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 24px;
    padding: 60px;
    box-shadow: 0 25px 60px rgba(0, 29, 85, 0.15);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: flex-start;
  }

  .faq-left-section {
    display: flex;
    flex-direction: column;
    gap: 20px;
  }

  .faq-right-section {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: right;
    text-align: left;
    padding-top: 30%;
  }

  .faq-badge {
    display: inline-block;
    color: #001B48;
    padding: 12px 3px;
    border-radius: 50px;
    font-size: 17px;
    font-weight: 700;
    letter-spacing: 0.5px;
    white-space: nowrap;
  }

  .faq-title {
    font-size: 50px;
    font-weight: 700;
    color: #001B48;
    margin: 0;
    line-height: 1.1;
  }

  .faq-content {
    display: flex;
    flex-direction: column;
    gap: 20px;
  }

  .faq-item {
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.3s ease;
  }


  .faq-item.active {
    border-color: #019cd3;
  }

  .faq-question {
    width: 100%;
    padding: 25px 30px;
    background: none;
    border: none;
    display: flex;
    align-items: center;
    gap: 20px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: left;
  }



  .faq-number {
    font-size: 1.1rem;
    font-weight: 100;
    color: #008ACE;
    filter: opacity(0.3);
    min-width: 40px;
  }

  .faq-text {
    flex: 1;
    font-size: 17px;
    color: #9F9F9F;
    line-height: 1.4;
  }

  .faq-icon {
    font-size: 1.5rem;
    color: #9F9F9F;
    transition: transform 0.3s ease;
    opacity: 0.3;
  }

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

  .faq-answer {
    padding: 0 30px 0 30px;
    max-height: 0;
    overflow: hidden;
    transition: all 0.4s ease;
    background: rgba(232, 253, 255, 0.3);
  }

  .faq-item.active .faq-answer {
    max-height: 200px;
    padding: 0 30px 30px 90px;
  }

  .faq-answer p {
    margin: 0;
    color: #001d55;
    line-height: 1.6;
    font-size: 1rem;
    text-align: left;

    opacity: 0.8;
  }

  /* === FAQ RESPONSIVE - FLUID SYSTEM === */

  /* Modern responsive sistem - Tüm breakpoint'lerde akıcı geçiş */
  .faq-overlay {
    padding: clamp(9px, 1vw, 9px) clamp(2%, 5vw, 5%) clamp(40px, 10vw, 80px) clamp(2%, 5vw, 5%);
    width: clamp(280px, 90vw, 3250px);
    max-width: min(1536px, 95vw);
    margin: 9px auto 0 auto;
  }

  .faq-container {
    background: rgba(255, 255, 255, 0.95);
    border-radius: clamp(16px, 3vw, 24px);
    padding: clamp(25px, 8vw, 60px) clamp(20px, 6vw, 60px);
    box-shadow: 0 25px 60px rgba(0, 29, 85, 0.15);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(100%, 400px), 1fr));
    gap: clamp(25px, 8vw, 80px);
    align-items: flex-start;
  }

  /* Desktop layout korunuyor, mobilde tek sütun oluyor */
  @media (min-width: 900px) {
    .faq-container {
      grid-template-columns: 1fr 1fr;
    }

    .faq-right-section {
      align-items: right;
      text-align: left;
      padding-top: 30%;
    }
  }

  /* Mobil layout - başlık üstte */
  @media (max-width: 899px) {
    .faq-container {
      grid-template-columns: 1fr;
      text-align: center;
    }

    .faq-right-section {
      order: -1;
      align-items: center;
      text-align: center;
      padding-top: 0;
    }

    .faq-left-section {
      order: 1;
    }
  }

  /* FAQ Elements - Fluid responsive */
  .faq-badge {
    font-size: clamp(14px, 2vw, 17px);
    padding: clamp(10px, 1.5vw, 12px) 3px;
  }

  .faq-title {
    font-size: clamp(28px, 7vw, 50px);
    line-height: 1.1;
    margin: 0;
  }

  .faq-question {
    padding: clamp(16px, 3vw, 25px) clamp(18px, 4vw, 30px);
    gap: clamp(12px, 2.5vw, 20px);
  }

  .faq-number {
    font-size: clamp(0.9rem, 1.2vw, 1.1rem);
    min-width: clamp(30px, 4vw, 40px);
  }

  .faq-text {
    font-size: clamp(14px, 2vw, 17px);
    line-height: 1.4;
  }

  .faq-icon {
    font-size: clamp(1.2rem, 2vw, 1.5rem);
  }

  .faq-item.active .faq-answer {
    padding: 0 clamp(18px, 4vw, 30px) clamp(20px, 3vw, 30px) clamp(60px, 10vw, 90px);
  }

  .faq-answer p {
    font-size: clamp(13px, 1.8vw, 16px);
    line-height: 1.6;
  }

  /* === URUN GORSEL - ÖZEL STİLLER === */
  /* ÖNEMLİ: Bu bölüm background-02.png ile uyumlu responsive sistem kullanır */
  /* Background-02: clamp(120px, 12vw, 200px) | Ürün görseli: clamp(360px, 36vw, 600px) */
  /* İki öğe arasındaki 3:1 oranı tüm ekran boyutlarında korunur */

  .urun-gorsel {
    /* FAQ'ın altına flex column içinde yerleş */
    position: relative;
    z-index: 2;
    width: 100%;
    background: transparent;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 60px 0 10px;

    /* Masaüstü için orijinal değer - Background-02 ile uyumlu */
    margin: clamp(360px, 36vw, 600px) 0 0 0;

    /* Flex item olarak davran */
    flex-shrink: 0;
    order: 2; /* FAQ'ın (order: 1) altında gelsin */

    /* Parent'ın stil etkilerini sıfırla */
    overflow: visible;
    text-align: center;

    /* Kendi container'ı olsun */
    min-height: auto;
    max-width: 100%;
  }

  .urun-gorsel .urun-gorsel-img {
    /* Resim için özel stiller - parent'dan bağımsız */
    width: 85% !important;
    max-width: 100%;
    height: auto;
    object-fit: contain;

    /* Pozisyonlama sıfırla */
    position: static;
    left: auto;
    top: auto;

    /* Transform'ları sıfırla */
    transform: none;

    /* Display ayarları */
    display: block;
    margin: 0 auto;

    /* Animasyon ayarları */
    opacity: 0;
    transition: all 1.2s ease-out;

    /* Shadow ve depth efekti */
    filter: drop-shadow(0 10px 30px rgba(0, 29, 85, 0.15));
  }

  .urun-gorsel .urun-gorsel-img.animate {
    opacity: 1;
    transform: scale(1.02);
  }

  /* Responsive tasarım */
  @media (min-width: 1700px) {
    .urun-gorsel {
      padding: 80px 0 10px;
    }

    .urun-gorsel .urun-gorsel-img {
      width: 85% !important;
      max-width: 100%;
    }
  }

  @media (max-width: 1200px) {
    .urun-gorsel {
      padding: 50px 0 10px;
    }

    .urun-gorsel .urun-gorsel-img {
      width: 85% !important;
    }
  }

  @media (max-width: 1024px) {
    .urun-gorsel {
      padding: 40px 0 10px;
      margin: clamp(30%, 5vw, 120px) 0 0 0;
    }

    .urun-gorsel .urun-gorsel-img {
      width: 85% !important;
      transition: all 1s ease-out;
    }
  }

  @media (max-width: 768px) {
    .urun-gorsel {
      padding: 30px 0 10px;
      margin: clamp(110%, 8vw, 200px) 0 0 0;
    }

    .urun-gorsel .urun-gorsel-img {
      width: 85% !important;
      transition: all 0.8s ease-out;
    }

    .urun-gorsel .urun-gorsel-img.animate {
      transform: scale(1.01);
    }
  }

  @media (max-width: 480px) {
    .urun-gorsel {
      padding: 20px 0 10px;
      margin: clamp(90%, 6vw, 180px) 0 0 0;
    }

    .urun-gorsel .urun-gorsel-img {
      width: 85% !important;
      transition: all 0.6s ease-out;
    }

    .urun-gorsel .urun-gorsel-img.animate {
      transform: none;
    }
  }

  /* === BLOG SECTION === */
  .blog-section {
    position: relative;
    z-index: 5;
    order: 3;
    width: 100%;
    padding: 0 5%; /* Align with other sections */
    box-sizing: border-box;
    margin-top: 40px; /* Büyük ekranlar için minimum margin */
  }

  .blog-container {
    max-width: 1536px;
    margin: 0 auto;
    text-align: left;

    /* Blur background effect */
    border: 1px solid #DEFFFB6A;
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    filter: brightness(0.95);
    border-radius: 24px;
    padding: 60px;
    box-shadow: 0 10px 30px rgba(0, 29, 85, 0.1);
  }

  .blog-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(229, 251, 253, 0.31);
    border-radius: 24px;
    z-index: -1;
    pointer-events: none;
  }

  .blog-header {
    margin-bottom: 40px;
  }

  .blog-title {
    font-size: clamp(28px, 7vw, 50px);
    font-weight: 700;
    color: #001B48;
    margin-bottom: 40px;
  }

  .blog-grid {
    display: grid;
    grid-template-columns: minmax(320px, 1fr) minmax(360px, 1.1fr) minmax(320px, 1fr);
    gap: 0px;
    height: auto;
    justify-content: center;
    max-width: 100%;
    margin: 0 auto;
  }

  .blog-cards-left {
    display: grid;
    grid-template-rows: 1fr 1fr;
    gap: 20px;
    min-height: 600px;
  }

  .blog-visuals-middle {
    display: grid;
    grid-template-rows: 1fr 1fr;
    gap: 20px;
    min-height: 600px;
  }

  .blog-cards-right {
    display: grid;
    grid-template-rows: 1.0fr 1.0fr;
    gap: 0px;
    min-height: 600px;
    margin-left: 40px;
  }

  .blog-card {
    border-radius: 7px;
    padding: clamp(20px, 3vw, 32px);
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: all 0.3s ease;
    box-sizing: border-box;
    align-items: flex-start;
    width: 100%;
    height: 100%;
    min-height: 280px;
  }

  .blog-cards-right .blog-card:last-child {
    width: 100%;
    height: 100%;
  }

  .blog-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 29, 85, 0.15);
  }

  .blog-card-dark {
    background: #001B48;
    color: white;
  }

  .blog-card-blue {
    background: linear-gradient(135deg, #4a9eff 0%, #00a9e0 100%);
    color: white;
  }

  .blog-card-light {
    background: linear-gradient(135deg, #ffffff 0%, #f8fbff 100%);
    color: #001d55;
    border: 1px solid rgba(0, 29, 85, 0.08);
  }

  .blog-card-icon {
    width: 48px;
    height: 48px;
    background: rgba(255, 255, 255, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    flex-shrink: 0;
  }

  .blog-card-light .blog-card-icon {
    background: #0ab1d6;
    color: #00a9e0;
  }

  .blog-card-icon i {
    font-size: 24px;
    color: white;
  }

  .blog-card-light .blog-card-icon i {
    color: black;
  }

  .blog-card-content {
    flex: 1;
  }

  .blog-card-title {
    font-size: clamp(18px, 2.5vw, 24px);
    font-weight: 700;
    margin-bottom: 16px;
    line-height: 1.3;
  }

  .blog-card-title-large {
    font-size: clamp(24px, 3.5vw, 35px);
  }

  .blog-card-description {
    font-size: 1rem;
    line-height: 1.6;
    color: #ffffff;
    margin: 0 0 20px 0;
    flex-grow: 1;
  }

  /* Blog Card Button özel stilleri (contact-btn ile aynı) */
  .blog-card-button {
    display: inline-flex;
    align-items: center;
    justify-content: flex-start; /* Added to align content left */
    gap: 8px;
    text-decoration: none;
    background: linear-gradient(90deg, #0391d0, #0eb6da);
    border: none;
    color: white !important; /* Metin rengini beyaz yap ve önceliklendir */

    padding: 0.9rem 3.25rem;
    border-radius: 3.25rem;
    font-weight: 600;
    cursor: pointer;
    font-size: 0.9rem;
    margin-top: auto;
    transition: all 0.3s ease;
  }

  .blog-card-light .blog-card-button {
    /* .blog-card-button zaten gerekli stilleri içeriyor, bu kuralı boş bırakabiliriz veya kaldırabiliriz */
    /* Ancak belirli bir durumu yönetmek için tutulabilir. Şimdilik rengi garantileyelim. */
    color: white !important;
  }

  .blog-card-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(3, 145, 208, 0.4);
  }

  .blog-card-button i {
    transition: transform 0.3s ease;
  }

  .blog-card-button:hover i {
      transform: translateX(4px);
  }

  .blog-visual-area {
    position: relative;
    overflow: hidden;
    width: 100%;
    height: 100%;
  }

  .blog-visual-only {
    border-radius: 7px;
    overflow: hidden;
    position: relative;
    background-image: url('../img/blog-03.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    width: 100%;
    height: 100%;
    min-height: 280px;
  }

  .blog-visual-middle {
    border-radius: 7px;
    overflow: hidden;
    position: relative;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    width: 100%;
    height: 100%;
    min-height: 280px;
  }

  .blog-visual-middle.visual-1 {
    background-image: url('../img/blog-01.png');
  }

  .blog-visual-middle.visual-2 {
    background-image: url('../img/blog-02.png');
  }

  .blog-visual-content {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
  }

  .blog-visual-area:hover .blog-visual-content {
    transform: scale(1.05);
  }

  /* Large Tablet & Medium Desktop */
  @media (max-width: 1440px) and (min-width: 1200px) {
    .blog-container {
      padding: clamp(40px, 4vw, 60px);
    }

    .blog-grid {
      grid-template-columns: minmax(280px, 1fr) minmax(320px, 1.1fr) minmax(280px, 1fr);
      gap: 0px;
    }

    .blog-cards-left,
    .blog-visuals-middle,
    .blog-cards-right {
      min-height: 550px;
    }
  }

  /* Tablet Portrait & Small Desktop */
  @media (max-width: 1199px) and (min-width: 900px) {
    .blog-section {
      margin-top: clamp(50px, 4vw, 80px);
    }

    .blog-container {
      padding: clamp(30px, 3.5vw, 50px);
    }

    .blog-grid {
      grid-template-columns: minmax(250px, 1fr) minmax(280px, 1.1fr) minmax(250px, 1fr);
      gap: 0px;
    }

    .blog-cards-left,
    .blog-visuals-middle,
    .blog-cards-right {
      min-height: 500px;
    }

    .blog-card {
      padding: clamp(18px, 2.5vw, 28px);
      min-height: 240px;
    }

    .blog-card-title {
      font-size: clamp(16px, 2.2vw, 22px);
    }

    .blog-card-title-large {
      font-size: clamp(20px, 3vw, 30px);
    }

    .blog-card-description {
      font-size: clamp(13px, 1.5vw, 16px);
    }
  }

  /* Large Mobile & Small Tablet */
  @media (max-width: 899px) and (min-width: 600px) {
    .blog-section {
      margin-top: clamp(40px, 5vw, 70px);
    }

    .blog-container {
      padding: clamp(25px, 3vw, 40px);
    }

    .blog-grid {
      grid-template-columns: repeat(2, 1fr);
      gap: 0px;
    }

    /* Tüm blog elemanlarını grid'e düz şekilde yerleştir */
    .blog-cards-left,
    .blog-visuals-middle,
    .blog-cards-right {
      display: contents;
    }

    .blog-card,
    .blog-visual-only,
    .blog-visual-middle {
      width: 100% !important;
      height: auto !important;
      min-height: 280px;
      border-radius: 12px;
    }

    .blog-card {
      padding: 22px;
      min-height: 300px;
    }

    .blog-card-title {
      font-size: 18px;
    }

    .blog-card-title-large {
      font-size: 22px;
    }
  }

  /* Responsive Design - 1024px'den sonra mobil */
  @media (max-width: 599px) {
    .blog-section {
      margin-top: clamp(60px, 5vw, 100px);
    }

    .blog-container {
      padding: clamp(15px, 3vw, 25px);
    }

    .blog-grid {
      display: grid;
      grid-template-columns: repeat(2, 1fr); /* 2'li grid - mobilde */
      gap: 0px;
      height: auto;
    }

    /* Tüm blog elemanlarını grid'e düz şekilde yerleştir */
    .blog-cards-left,
    .blog-visuals-middle,
    .blog-cards-right {
      display: contents; /* Wrapper'ları kaldır, içerikleri direkt grid'e yerleştir */
    }

    /* Tüm blog elemanları için ortak stiller */
    .blog-card,
    .blog-visual-only,
    .blog-visual-middle {
      width: 100% !important;
      height: auto !important;
      min-height: 250px;
      border-radius: 12px;
      overflow: hidden;
      transition: all 0.3s ease;
    }

    /* İçerik kartları için özel ayarlar */
    .blog-card {
      padding: 18px;
      display: flex;
      flex-direction: column;
      justify-content: space-between;
      min-height: 270px;
    }

    /* Görsel kartları için özel ayarlar */
    .blog-visual-only,
    .blog-visual-middle {
      min-height: 250px;
      background-size: cover;
      background-position: center;
      background-repeat: no-repeat;
    }

    /* Hover efektleri */
    .blog-card:hover,
    .blog-visual-only:hover,
    .blog-visual-middle:hover {
      transform: translateY(-5px);
      box-shadow: 0 15px 35px rgba(0, 29, 85, 0.15);
    }

    .blog-card-title {
      font-size: 15px;
      margin-bottom: 10px;
    }

    .blog-card-title-large {
      font-size: 18px;
    }

    .blog-card-description {
      font-size: 13px;
      line-height: 1.4;
    }

    .blog-card-button {
      padding: 0.6rem 1.2rem;
      font-size: 0.75rem;
    }
  }

  @media (max-width: 480px) {
    .urun-gorsel {
      padding: 30px 0 10px;
      margin: clamp(190%, 5vw, 160px) 0 0 0;
    }

    .blog-section {
      margin-top: clamp(50px, 8vw, 120px);
    }

    .blog-container {
      padding: 15px;
      border-radius: 16px;
    }

    .blog-container::before {
      border-radius: 16px;
    }

    .blog-grid {
      grid-template-columns: repeat(2, 1fr); /* Mobilde de 2'li grid koru */
      gap: 0px;
    }

    /* Mobil blog elemanları */
    .blog-card {
      padding: 15px;
      min-height: 220px;
    }

    .blog-visual-only,
    .blog-visual-middle {
      min-height: 220px;
    }

    .blog-card-title {
      font-size: 14px;
      margin-bottom: 10px;
    }

    .blog-card-title-large {
      font-size: 16px !important;
    }

    .blog-card-description {
      font-size: 12px;
      line-height: 1.4;
    }

    .blog-card-button {
      padding: 0.5rem 1rem;
      font-size: 0.7rem;
    }
  }



  /* Landscape modunda tek sütunlu yapıya geçiş (isteğe bağlı) */
  @media (max-width: 768px) and (orientation: landscape) {
    .blog-grid {
      grid-template-columns: 1fr;
    }
  }



  /* Çok küçük ekranlar için tek sütun */
  @media (max-width: 360px) {
    .blog-grid {
      grid-template-columns: 1fr;
    }
  }
  .section.fabrika-foto{
    background-color: white;
  }
  .fabrika-foto-img{
    object-fit: cover;
    width: 42%;
    margin-left: 8%;
  }

  @media (max-width: 1024px) {
    .fabrika-foto-img {
      width: 60%;
      margin-left: 5%;
    }
  }

  @media (max-width: 768px) {
    .fabrika-foto-img {
      width: 80%;
      margin-left: 3%;
    }
  }

  @media (max-width: 480px) {
    .fabrika-foto-img {
      width: 94%;
      margin-left: 3%;
    }
  }
  .ads-content-title-h3{
    width: 40%;
  }
  section.fabrika-foto {
    background: white;
  }

  /* Serüvenler Bölümü Yeni Stiller */
  .ads-section-seruvenler {
    padding: 50px 0;
    max-width: 100%;
    margin: 0 auto;
  }

  .ads-timeline {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    gap: 40px;
  }

  .ads-timeline-sticky {
    position: sticky;
    top: 114px;
    width: 200px;
    height: 100px;
    align-self: flex-start;
  }

  .ads-years-viewer {
    position: relative;
    width: 100%;
    height: 100%;
  }

  .ads-year-item {
    font-size: 100px;
    font-weight: 900;
    color: #001B48;
    line-height: 1;
    font-family: 'Plus Jakarta Sans', sans-serif;
    min-width: 200px;
    position: absolute;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    transform: translateY(100%);
    transition: transform 0.7s ease-in-out, opacity 0.5s ease-in-out;
    opacity: 0;
  }

  .ads-year-item.active {
    transform: translateY(0);
    opacity: 1;
  }

  .ads-year-item.previous {
    transform: translateY(-100%);
    opacity: 0;
  }

  .ads-timeline-content {
    flex: 1;
  }

  .ads-content-item {
    position: relative;
    padding: 40px 0;
    min-height: 70vh;
    opacity: 0.3;
    transition: opacity 0s;
  }

  .ads-content-item.active {
    opacity: 1;
  }

  .ads-content-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: #008ACE;
  }

  .ads-content {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    flex: 1;
    margin-left: 4%;
  }

  .ads-content-header {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    max-width: 300px;
  }

  .ads-content-title {
    display: flex;
    align-items: flex-start;
    gap: 10px;
  }

  .ads-content-title-h3 {
    display: inline;
    margin: 0;
    font-size: 18px;
    line-height: 1.4;
  }

  .ads-content p {
    margin: 0;
    flex: 1;
    font-size: 16px;
    line-height: 1.6;
    padding-top: 2px;
    padding-left: 10px;
    color:#001B48;
    opacity: 0.8;
    text-align: left;
  }

  .ads-arrow-icon {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
  }

  .content h3 {
    color: #008ace;
    font-size: 20px;
    font-weight: 500;
    line-height: 1.4;
    margin: 0;
  }

  .content p {
    color: #666;
    line-height: 1.7;
    font-size: 15px;
    margin: 0;
    max-width: 800px;
  }

  /* Mobil Responsive */
  @media screen and (max-width: 768px) {
    .ads-timeline {
        flex-direction: column;
    }
    .ads-timeline-sticky {
        position: sticky;
        top: 80px; /* Gezinti çubuğu yüksekliğine göre ayarlayın */
        width: 100%;
        z-index: 10;
        margin-bottom: 20px;
        padding: 10px 0; /* Padding ayarlandı */
    }
    .ads-years-viewer {
        height: 60px; /* Adjust for smaller font size */
    }
    .ads-year-item {
        font-size: 40px;
        justify-content: center;
    }
    .ads-timeline-item {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
    }
    .ads-content-item {
        padding-top: 60px;
    }
    .ads-content {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
        width: 100%;
        margin-left: 0;
    }

    .ads-content-header {
        max-width: 100%;
    }

    .ads-content-title-h3 {
        font-size: 14px;
    }

    .ads-content p {
        font-size: 13px;
        width: 100%;
    }
  }
  .ads-content-p2{
    color:#001B48;
    opacity: 0.8;
  }

  /* === ABOUT SAYFASI HERO SECTION === */
  .about-hero-section {
    background: #DEFFFB;
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    margin-top: -120px;
    padding-top: 120px;
  }

  .about-hero-container {
    max-width: 1400px;
    padding: 0 4%;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 2;
  }

  .about-hero-content {
    color: white;
  }

  .about-hero-title {
    font-size: 4rem;
    font-weight: 100;
    margin-bottom: 1.5rem;
    line-height: 1.2;
    background: #001B48;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
  }

  .about-hero-description {
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 2.5rem;
    color: #001B48;
    max-width: 500px;
  }

  .about-hero-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
  }

  .about-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    border: none;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
  }

  .about-btn.primary {
    background: linear-gradient(45deg, #0391d0, #0eb6da);
    color: white;
  }

  .about-btn.primary:hover {
    background: linear-gradient(45deg, #0eb6da, #0391d0);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(3, 145, 208, 0.4);
  }

  .about-btn.secondary {
    background: rgba(255, 255, 255, 0.1);
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.3);
  }

  .about-btn.secondary:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.5);
    transform: translateY(-2px);
  }

  .about-btn i {
    font-size: 1.2rem;
  }

  /* Visual Elements */
  .about-hero-visual {
    position: relative;
    height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .about-visual-circle {
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(3, 145, 208, 0.3), rgba(14, 182, 218, 0.3));
    border: 2px solid rgba(255, 255, 255, 0.2);
    position: relative;
    animation: aboutFloat 6s ease-in-out infinite;
  }

  .about-visual-elements {
    position: absolute;
    width: 100%;
    height: 100%;
  }

  .about-element {
    position: absolute;
    border-radius: 50%;
    background: linear-gradient(45deg, #0391d0, #0eb6da);
    box-shadow: 0 4px 15px rgba(3, 145, 208, 0.3);
  }

  .about-element.element-1 {
    width: 40px;
    height: 40px;
    top: 20%;
    right: 10%;
    animation: aboutRotate 8s linear infinite;
  }

  .about-element.element-2 {
    width: 25px;
    height: 25px;
    bottom: 30%;
    left: 15%;
    animation: aboutRotate 10s linear infinite reverse;
  }

  .about-element.element-3 {
    width: 30px;
    height: 30px;
    top: 60%;
    right: 20%;
    animation: aboutFloat 4s ease-in-out infinite;
  }

  /* Animations */
  @keyframes aboutFloat {
    0%, 100% {
      transform: translateY(0);
    }
    50% {
      transform: translateY(-20px);
    }
  }

  @keyframes aboutRotate {
    0% {
      transform: rotate(0deg) translateX(50px) rotate(0deg);
    }
    100% {
      transform: rotate(360deg) translateX(50px) rotate(-360deg);
    }
  }

  /* About Sayfası Stilleri */
  .about-hero-section {
      background-color: #DEFFFB;
      position: relative;
      padding: 0px 48px;
      overflow: visible;
      color: white;
      min-height: 20em;
      background-image: url(../img/faq-walpaper.png);
      background-size: cover;
      background-position: center;
      background-repeat: no-repeat;
      display: flex;
      align-items: center;
  }

  .about-hero-section::before {
      content: '';
      position: absolute;
      bottom: -2%;
      right: -1px;
      width: 50%;
      height: 45%;
      background-color: #ffffff;
      border-top-left-radius: 40px;
      border-bottom-right-radius: 27px;
      z-index: 1;
  }

  .about-hero-container {
      position: relative;
      z-index: 2;
      width: 100%;
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 4rem;
      align-items: center;
      max-width: 1400px;
      margin: 0 auto;
  }

  .about-hero-content {
      max-width: 650px;
      position: relative;
      top: clamp(25%, 8vw, 39%);
      display: flex;
      flex-direction: column;
      justify-content: center;
  }

  /* İngilizce dil için özel stil */
  .lang-en .about-hero-content {
      top: clamp(15%, 8vw, 39%);
  }

  .about-hero-subtitle {
      font-size: 28px;
      font-weight: 500;
      letter-spacing: 1px;
      margin-bottom: 0;
      color: #001B48;
      text-transform: uppercase;
      position: relative;
      top: 62px;
  }

  .about-hero-title {
      font-size: 105px;
      font-weight: 500;
      margin-bottom: 10px;
      line-height: 1;
      color: #DEFFFB;
  }

  .about-hero-description {
      font-size: 17px;
      line-height: 1.6;
      opacity: 0.8;
      max-width: 550px;
      color: #001B48  ;
  }

  .about-hero-offset-box-container {
      display: block;
      position: absolute;
      bottom: 5%;
      right: 5%;
      width: 40%;
      z-index: 3;
      color: #001d55;
      padding: 2rem;
  }

  .about-hero-offset-box-container h3 {
      font-size: 1.5rem;
      font-weight: 700;
      margin-bottom: 1rem;
  }

  .about-hero-offset-box-container p {
      font-size: 0.9rem;
      line-height: 1.6;
  }

  /* Önceki clip-path ve dalga stilleri kaldırıldı */

  /* Container için relative position */
  .about-hero-offset-box-container {
    position: relative;
    min-height: 400px;
  }

  @media (min-width: 993px) and (max-width: 1512px) {
      .about-hero-section::before {
          display: none;
      }
      .about-hero-offset-box-container {
          position: relative;
          display: block;
          top: auto;
          bottom: auto;
          left: auto;
          right: auto;
          width: 100%;
          max-width: 600px;
          margin: 40px auto 0;
          padding: 0;
          z-index: 2;
          color: #001d55;
      }
      .filter-customization-box {
          position: relative;
          top: auto;
          left: auto;
          width: 100%;
          max-width: 600px;
          margin: 0 auto;
          backdrop-filter: blur(9px) brightness(1.1);
          background-color: #001b48;
          color: #FFFFFF;
          box-shadow: none;
          border: 0;
      }

      .filter-customization-box .filter-title,
      .filter-customization-box .filter-description {
          color: #FFFFFF;
      }
  }

  /* Tablet and smaller laptop screens */
  @media (max-width: 1200px) and (min-width: 993px) {
      .about-hero-container {
          gap: 3rem;
          max-width: 1200px;
      }

      .about-hero-content {
          top: clamp(10%, 5vw, 25%); /* Tablet için daha küçük top değeri */
      }

      .aboutmakinegorseli img {
          max-width: 500px;
      }
  }

  @media (max-width: 1510px) and (min-width: 770px) {
      .about-hero-section {
          padding: 60px 24px;
          text-align: center;
          min-height: auto;
          display: flex;
          flex-direction: column;
          justify-content: center;
          align-items: center;
      }

      .about-hero-section::before {
          display: none;
      }

      .about-hero-container {
         display: flex;
         flex-direction: column;
         gap: 3rem;
         text-align: center;
         padding: 0;
         max-width: 800px;
         margin: 0 auto;
      }

      .about-hero-content {
          order: 2;
          padding-top: 0;
          max-width: 100%;
          width: 100%;
          top: 0; /* Mobilde top değerini sıfırla */
      }

      .aboutmakinegorseli {
          order: 1;
          max-width: 500px;
          margin: 0 auto;
          transform: translateY(110px) translateX(45px) !important;
      }

      .aboutmakinegorseli img {
          max-width: 100%;
          width: 90%;
      }

      .about-hero-subtitle {
          top: 0;
          font-size: 20px;
          margin-bottom: 1rem;
          position: static;
      }
      .about-hero-title {
          font-size: 60px;
      }
      .about-hero-description {
          max-width: 600px;
          margin-left: auto;
          margin-right: auto;
      }

      .about-hero-offset-box-container {
          transform: translateY(-80px);
          display: none;
      }
  }

  @media (max-width: 768px) {
      .about-hero-section {
          padding: 0px 20px;
      }
      .about-hero-offset-box-container{
        min-height: 0px !important;
        display: none;
    }
    .about-floating-action-btn{
        display: none !important;
    }


      .about-hero-title {
          font-size: 48px;
      }
      .about-hero-subtitle {
          font-size: 18px;
      }
      .about-hero-description {
          font-size: 15px;
      }
      .filter-customization-box {
          flex-direction: row;
          gap: 20px;
          text-align: center;
          border: 0;
      }
      .filter-content {
          max-width: 100%;
      }
      .settings-button{display: none;}
  }

  @media (max-width: 480px) {
      .about-hero-section {
          padding: 0px 12px;
      }
      .about-hero-title {
          font-size: 40px;
      }
      .about-hero-subtitle {
          font-size: 16px;
      }
  }

  /* About Bölümü Yeni Stiller */
  .ads-section-about {
    padding: 50px 0;
    max-width: 100%;
    margin: 0 auto;
  }

  /* Mobil Responsive */
  @media screen and (max-width: 768px) {
    .ads-section-about .ads-timeline {
        flex-direction: column;
    }
    .ads-section-about .ads-timeline-sticky {
        position: sticky;
        top: 80px; /* Gezinti çubuğu yüksekliğine göre ayarlayın */
        width: 100%;
        z-index: 10;
        margin-bottom: 20px;
        padding: 10px 0; /* Padding ayarlandı */
    }
    .ads-section-about .ads-years-viewer {
        height: 60px; /* Adjust for smaller font size */
    }
    .ads-section-about .ads-year-item {
        font-size: 40px;
        justify-content: center;
    }
    .ads-section-about .ads-timeline-item {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
    }
    .ads-section-about .ads-content-item {
        padding-top: 60px;
    }
    .ads-section-about .ads-content {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
        width: 100%;
        margin-left: 0;
    }

    .ads-section-about .ads-content-header {
        max-width: 100%;
    }

    .ads-section-about .ads-content-title-h3 {
        font-size: 14px;
    }

    .ads-section-about .ads-content p {
        font-size: 13px;
        width: 100%;
    }
  }

  /* About makine görseli positioning */
  .aboutmakinegorseli {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    flex: 1;
    transform: translateY(160px) translateX(45px);
    z-index: 1000;
  }

  .aboutmakinegorseli img {
    width: 100%;
    height: auto;
    max-width: 600px;
    object-fit: contain;
    display: block;
  }

  @media (max-width: 769px) {
    .about-hero-section {
      padding: 40px 16px;
      min-height: auto;
      background-position: center;
    }

    .about-hero-section::before {
      display: none;
    }

    .about-hero-container {
      display: flex !important;
      flex-direction: column;
      gap: 2rem;
      text-align: center;
      max-width: 100%;
      grid-template-columns: none;
    }

    .about-hero-content {
      order: 2;
      max-width: 100%;
      padding: 0;
      top: 50px; /* Mobilde top değerini sıfırla */
    }

    .about-hero-subtitle {
      font-size: 16px;
      top: 0;
      margin-bottom: 1rem;
      position: static;
    }

    .about-hero-title {
      font-size: 32px;
      margin-bottom: 1.5rem;
      text-align: center;
    }

    .about-hero-description {
      font-size: 14px;
      max-width: 100%;
      margin: 0 auto 2rem auto;
      text-align: center;
    }

    .aboutmakinegorseli {
      order: 1;
      width: 100%;
      margin-top: 20px;
      max-width: 400px;
      margin: 20px auto 0 auto;
      transform: none;
    }

    .aboutmakinegorseli img {
      width: 90%;
      height: auto;
      max-width: 350px;
      margin: 0 auto;
      display: block;
    }
  }

  @media (min-width: 2800px) {
    .about-hero-content {
      top: 15%;
    }
  }

  @media (max-width: 480px) {
    .about-hero-subtitle {
      font-size: 14px;
    }

    .about-hero-title {
      font-size: 28px;
    }

    .about-hero-description {
      font-size: 13px;
    }

    .aboutmakinegorseli {
      width: 100%;
      margin: 15px auto 0 auto;
      max-width: 350px;
    }

    .aboutmakinegorseli img {
      width: 95%;
      max-width: 320px;
      margin: 0 auto;
      display: block;
    }
    .about-hero-offset-box-container{
        min-height: 0px !important;
    }
  }

  /* === ABOUT METİN SECTION === */
  .about-metin-section {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    min-height: 100vh;
    overflow: hidden;
  }

  .about-metin-container {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 1400px;
  }

  .about-metin-content-grid {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 60px;
    align-items: center;
  }

  /* === SOL TARAF - METİN İÇERİĞİ === */
  .about-metin-left-content {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 600px;
    padding-bottom: 40px;
  }

  .about-metin-text-section {
    margin-top: 0;
  }

  .about-metin-title {
    color: #001d55;
    font-size: 2.7rem;
    font-weight: 600;
    line-height: 1.25;
    margin: 0 0 30px 0;
  }

  .about-metin-description {
    color: #001B48;
    font-size: 17px;
    line-height: 1.6;
    max-width: 630px;
    margin: 0 0 25px 0;
    opacity: 0.8;
    filter: opacity(0.8);
  }

  .about-metin-buttons {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-top: 55px;
  }

  .about-metin-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    border: none;
    cursor: pointer;
    padding: 10px 35px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    text-decoration: none;
  }

  .play-tour-btn {
    background: linear-gradient(90deg, #0391d0, #0eb6da);
    color: white;
  }

  .play-tour-btn:hover {
    background: linear-gradient(90deg, #0280b8, #0ca8c8);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(3, 145, 208, 0.3);
  }

  .about-metin-btn .material-icons {
    font-size: 1.2rem;
  }

  .about-metin-btn svg {
    pointer-events: none;
    transition: all 0.3s ease;
  }

  /* === SAĞ TARAF - FİLTRE KARTI === */
  .about-metin-right-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-height: 600px;
    position: relative;
  }

  .about-filter-card-content {
    background: #E5FBFD;
    border: 1px solid #BFFFFA33;
    border-radius: 7px;
    padding: 25px;
    position: relative;
    overflow: hidden;
    width: 100%;
    max-width: min(370px, calc(100vw - 40px));
    min-width: 280px;
    height: 265px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
    align-items: stretch;
    margin-left: -40%;
    margin-top: -80%;
    backdrop-filter: blur(9px) brightness(1.15);
    -webkit-backdrop-filter: blur(9px) brightness(1.15);
  }

  .about-filter-card-content::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-repeat: repeat;
    background-position: center 40%;
    filter: blur(9px);
    z-index: -1;
  }

  /* Sol sütun - metin içerikleri */
  .about-filter-card-left {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    position: relative;
    z-index: 2;
  }

  /* İngilizce dil için özel stil */
  .lang-en .about-filter-card-left {
    margin-top: -3em;
  }

  /* Sağ sütun - animasyon */
  .about-filter-card-right {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    width: 275px;
    height: 275px;
    z-index: 2;
  }

  /* Lottie Player animasyonu */
  .about-filter-card-content lottie-player {
    width: 220px !important;
    height: 220px !important;
    opacity: 0.9;
  }

  .about-filter-card-header {
    width: 100%;
    margin-bottom: 0;
  }

  .about-filter-card-title {
    color: black;
    font-size: 1.8rem;
    line-height: 1.25;
    width: 100%;
    font-weight: 600;
    margin-bottom: 12px;
  }

  .about-filter-card-description {
    color: #02B7D9;
    font-size: 0.8rem;
    line-height: 2.6;
    margin-bottom: 0;
    width: 100%;
  }

  .about-filter-card-btn {
    background: #008ACE;
    color: #001b48;
    width: 38px;
    height: 38px;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease;
    border-radius: 2px;
  }

  .about-filter-card-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(220, 252, 231, 0.3);
  }

  .about-filter-card-btn .material-icons {
    font-size: 1.1rem;
    text-shadow: none;
    position: relative;
    z-index: 3;
  }

  /* === FLOATING ACTION BUTTON === */
  .about-floating-action-btn {
    position: absolute;
    bottom: 45%;
    right: 151px;
    width: 48px;
    height: 48px;
    background: #00a9e0;
    border-radius: 50%;
    display: flex !important;
    align-items: center;
    justify-content: center;
    color: white;
    cursor: pointer;
    transition: all 0.3s ease;
    transform: none;
    z-index: 1000;
  }

  .about-floating-action-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 35px -5px rgba(0, 169, 224, 0.7);
    background: #019cd3;
  }

  .about-floating-action-btn .material-icons,
  .about-floating-action-btn i,
  .about-floating-action-btn svg {
    text-shadow: none;
    font-size: 1.5rem;
    z-index: 4;
    pointer-events: none;
  }

  .about-floating-action-btn svg {
    width: 32px !important;
    height: 32px !important;
    fill: white !important;
    color: white !important;
  }

  .about-floating-action-btn svg * {
    fill: white !important;
    color: white !important;
  }

  /* === RESPONSIVE === */

  /* 1290px'den sonra layout değişimi - laptop hariç hep alt alta */
  @media (max-width: 1290px) {
    .about-metin-section {
      padding: 60px 5%;
    }

    .about-metin-content-grid {
      display: flex !important;
      flex-direction: column !important;
      gap: 40px !important;
    }

    .about-metin-left-content {
      min-height: auto !important;
      padding: 0 !important;
      order: 1;
    }

    .about-metin-right-content {
      order: 2;
      min-height: auto !important;
      display: flex !important;
      justify-content: center !important;
    }

    /* Filter kartının pozisyonunu tablet'te sıfırla */
    .about-filter-card-content {
      margin-left: auto !important;
      margin-right: auto !important;
      margin-top: 20px !important;
    }

    .about-metin-title {
      text-align: center !important;
    }

    .about-metin-description {
      text-align: center !important;
      max-width: 100% !important;
    }

    .about-metin-buttons {
      justify-content: center !important;
    }

    /* Floating action button tablet'te pozisyon ayarla */
    .about-floating-action-btn {
      position: relative !important;
      bottom: auto !important;
      right: auto !important;
      margin: 20px auto 0 auto !important;
      align-self: center !important;
      display: flex !important;
      visibility: visible !important;
    }
  }

  /* Tablet boyutları - sadece font ve spacing ayarları */
  @media (max-width: 768px) and (min-width: 481px) {
    .about-metin-section {
      padding: 50px 5% !important;
    }

    .about-metin-title {
      font-size: 2rem !important;
    }

    .about-metin-description {
      font-size: 0.9rem !important;
    }

    .about-metin-buttons {
      gap: 15px !important;
    }

    /* Filter kartının boyutunu küçük tablet'te ayarla */
    .about-filter-card-content {
      max-width: min(350px, calc(100vw - 40px)) !important;
      margin-top: 10px !important;
    }
  }

  /* Mobil boyutlar - sadece özel ayarlar */
  @media (max-width: 480px) {
    .about-metin-section {
      padding: 40px 0 !important;
    }

    .about-metin-container {
      padding: 0 20px !important;
    }

    .about-metin-title {
      font-size: 1.8rem !important;
      margin-bottom: 15px !important;
    }

    .about-metin-description {
      font-size: 0.9rem !important;
      margin-bottom: 25px !important;
    }

    .about-metin-buttons {
      flex-wrap: wrap !important;
      gap: 12px !important;
      margin-top: 25px !important;
    }

    .about-metin-btn {
      padding: 12px 24px !important;
      font-size: 0.9rem !important;
      min-width: 140px !important;
    }

    /* Filter kartının boyutunu mobilde ayarla */
    .about-filter-card-content {
      max-width: min(390px, calc(100vw - 20px)) !important;
      min-width: 280px !important;
      margin-top: 10px !important;
    }
    .about-floating-action-btn{
        display: none !important;
    }
  }

  .urunler-kısmı-section {
    padding: 80px 48px;
    background-color: #ffffff;
  }

  .urunler-content-container {
    display: flex;
    gap: 60px;
    max-width: 1400px;
    margin: 0 auto;
  }

  .urunler-sol-sutun {
    flex: 0 0 300px;
  }

  /* Özelleştirme Kartı Stilleri */
  .urunler-sidebar-ozellestirme-karti {
    position: relative;
    padding: 24px;
    background-color: #f0f8ff;
    border-radius: 8px;
    margin-top: 30px;
    border: 1px solid #BFFFFA33;
  }

  .ozellestirme-karti-icerik {
    display: flex;
    align-items: center;
    gap: 16px;
  }

  .ozellestirme-karti-sol {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
  }

  .ozellestirme-karti-baslik h3 {
    font-size: 23px;
    font-weight: bold;
    color: #001B48;
    margin: 0 0 8px 0;
  }

  .ozellestirme-karti-baslik p {
    font-size: 14px;
    color: #1B9AD6;
    margin: 0;
    line-height: 1.5;
    width: 120%;
  }

  .ozellestirme-karti-buton {
    width: 40px;
    height: 40px;
    background-color: #1B9AD6;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    margin-bottom: 16px;
  }

  .ozellestirme-karti-sag {
    flex-shrink: 0;
    width: 100px;
    height: 100px;
    position: relative;
  }

  .ozellestirme-karti-sag lottie-player {
    width: 150px;
    height: 150px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
  }

  .ozellestirme-karti-fab {
    position: absolute;
    bottom: -20px;
    right: -20px;
    width: 80px;
    height: 80px;
    cursor: pointer;
    transition: transform 0.3s ease;
  }

  .ozellestirme-karti-fab:hover {
    transform: scale(1.1);
  }

  .ozellestirme-karti-fab img {
    width: 100%;
    height: 100%;
  }

  /* Gerçek Sidebar İçerik Alanı */
  .sidebar-item-container {
    background: white;
    border-radius: 8px;
    padding: 0;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    height: fit-content;
  }

  .sidebar-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 40px 24px;
    border-bottom: 1px solid #e9ecef;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 500;
    color: #2c3e50;
    text-decoration: none;
  }

  .sidebar-item:hover {
    background-color: #f8f9fa;
    text-decoration: none;
    color: #2c3e50;
  }

  .sidebar-item.active {
    background-color: #1B9AD6;
    color: white;
    text-decoration: none;
  }

  .sidebar-item.active .arrow-right {
    color: white;
  }

  .arrow-right {
    color: black;
    font-weight: bold;
    font-size: 18px;
  }

  .sidebar-bottom {
    padding: 20px 24px;
    display: flex;
    justify-content: center;
  }

  .bottom-arrow {
    width: 40px;
    height: 40px;
    background-color: #1B9AD6;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
  }

  .bottom-arrow:hover {
    transform: scale(1.1);
  }

  /* Sağ Ürün Kartları */
  .urunler-products {
    flex: 1;
  }

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

  .product-item {
    display: flex;
    flex-direction: column;
    gap: 16px;
    text-decoration: none;
    color: inherit;
  }

  .product-item:hover {
    text-decoration: none;
    color: inherit;
  }

  .product-card {
    background: #FAFAFA;
    border-radius: 12px;
    padding: 24px;
    border: 1px solid #EAEAEA;
    transition: all 0.3s ease;
    cursor: pointer;
    min-height: 350px;
  }

  .product-card:hover {
    border: 2px solid #1B9AD6;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(27, 154, 214, 0.15);
  }

  .product-header {
    display: flex;
    justify-content: flex-start;
    margin-bottom: 20px;
  }

  .plus-icon {
    width: 20px;
    height: 20px;
    transition: all 0.3s ease;
    opacity: 0.7;
  }

  .product-card:hover .plus-icon {
    opacity: 1;
    transform: scale(1.1);
  }

  .product-card:hover .plus-icon path {
    fill: #1B9AD6;
  }

  .product-image {
    text-align: center;
  }

  .product-image img {
    max-width: 100%;
    height: auto;
    max-height: 300px;
  }

  .product-title h3 {
    color: #001B48;
    font-size: 18px;
    font-weight: 1;
    line-height: 1.4;
    margin: 0;
    text-align: center;
    transition: all 0.3s ease;
  }


  .product-item:hover .product-title h3 {
    font-weight: bold;
  }

  /* Responsive */
  @media (max-width: 1024px) {
    .urunler-content-container {
        flex-direction: column;
        gap: 40px;
    }

    .urunler-sidebar {
        flex: none;
    }

    .products-grid {
        grid-template-columns: 1fr;
    }
  }

  @media (max-width: 768px) {
    .urunler-kısmı-section {
        padding: 40px 20px;
    }

    .sidebar-item {
        padding: 16px 20px;
        font-size: 14px;
    }

    .product-card {
        padding: 20px;
    }

    .ozellestirme-karti-icerik {
        flex-direction: column;
        text-align: center;
        gap: 24px;
    }

    .ozellestirme-karti-sol {
        flex: initial;
        align-items: center;
        justify-content: flex-start;
        gap: 16px;
    }

    .ozellestirme-karti-baslik p {
        width: 100%;
    }
  }


      /* Filter Selection Page Styles */
      .ads-filter-section {
        padding: 60px 48px;
        background-color: #ffffff;
        min-height: 100vh;
        transition: all 0.3s ease;
        cursor: pointer;
    }


    .ads-filter-section:active {
        transform: translateY(0);
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.15);
    }

    .ads-filter-container {
        display: flex;
        gap: 40px;
        max-width: 1400px;
        margin: 0 auto;
    }

    /* Left Sidebar - Filters */
    .ads-filter-sidebar {
        width: 320px;
        background: white;
        border-radius: 12px;
        padding: 0;
        height: fit-content;
        overflow: hidden;
    }

    .ads-filter-group {
        border-bottom: 1px solid #e5e7eb;
    }

    .ads-filter-group:last-child {
        border-bottom: none;
    }

    .ads-filter-header {
        background: linear-gradient(90deg, #0391d0, #0eb6da);
        border: none;
        color: white;
        padding: 16px 20px;
        border-radius: 1.25rem;
        font-weight: 600;
        cursor: pointer;
        font-size: 14px;
        transition: all 0.3s ease;
    }


    .ads-filter-title {
        font-size: 14px;
        font-weight: 600;
    }

    .ads-filter-options {
        padding: 20px;
    }

    .ads-filter-option {
        display: flex;
        align-items: center;
        margin-bottom: 12px;
        cursor: pointer;
        font-size: 14px;
        color: #7f8781;
        padding-bottom: 12px;
            border-bottom: 1px solid #f0f0f0;
    }

    .ads-filter-option:last-child {
        margin-bottom: 0;
        border-bottom: none;
        padding-bottom: 0;
    }

    .ads-filter-option input[type="checkbox"] {
        display: none;
    }

    .ads-checkmark {
        width: 18px;
        height: 18px;
        border: 2px solid #d1d5db;
        border-radius: 3px;
        margin-right: 12px;
        position: relative;
        transition: all 0.3s ease;
    }

    .ads-filter-option input[type="checkbox"]:checked + .ads-checkmark {
        background-color: #1B9AD6;
        border-color: #1B9AD6;
    }

    .ads-filter-option input[type="checkbox"]:checked + .ads-checkmark:after {
        content: "✓";
        position: absolute;
        color: white;
        font-size: 12px;
        font-weight: bold;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
    }

    .ads-capacity-input {
        width: 110%;
        margin-left: -5%;
        padding: 16px 20px;
        border: 1px solid #7f8781;
                border-radius: 1.25rem;
        font-size: 14px;
        background: transparent;
        text-align: center;
        color: #7f8781;
        font-weight: 11;
        transition: all 0.3s ease;
        margin-right: auto;
        box-sizing: border-box;
    }

    .ads-capacity-input::placeholder {
        color: #0391d0;
        opacity: 0.7;
    }

    .ads-capacity-input:focus {
        outline: none;
        border-color: #0eb6da;
        box-shadow: 0 0 0 3px rgba(3, 145, 208, 0.1);
    }

    /* List Products Button */
    .ads-list-products-container {
        padding: 20px;
        background: white;
    }

    .ads-list-products-btn {
        width: 100%;
        background: #1e3a8a;
        color: white;
        border: none;
        padding: 15px 20px;
        border-radius: 8px;
        font-size: 14px;
        font-weight: 600;
        cursor: pointer;
        transition: all 0.3s ease;
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 8px;
    }

    .ads-list-products-btn:hover {
        background: #1e40af;
        transform: translateY(-1px);
        box-shadow: 0 4px 12px rgba(30, 58, 138, 0.3);
    }



    /* Responsive Design */
    @media (max-width: 1200px) {
        .ads-filter-container {
            gap: 24px;
        }
    }

    @media (max-width: 768px) {
        .ads-filter-section {
            padding: 40px 24px;
        }

        .ads-filter-container {
            flex-direction: column;
            gap: 30px;
        }

        .ads-filter-sidebar {
            width: 100%;
        }
    }

    @media (max-width: 480px) {
        .ads-filter-section {
            padding: 30px 20px;
        }

        .ads-filter-options {
            padding: 16px;
        }

        .ads-filter-option {
            font-size: 13px;
            margin-bottom: 10px;
            padding-bottom: 10px;
        }
    }


    /* Global CSS Reset for this component */
    .urundetay-mobile-content * {
      box-sizing: border-box;
    }

    .urundetay-catalog-title{
      font-size: 22px;
      font-weight: 500;
    }
  /* Product Detail Modal Styles */
  .urundetay-product-detail-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    display: flex;
    justify-content: center;
    align-items: flex-start;
    z-index: 10000;
    font-family: "Plus Jakarta Sans", sans-serif;
    padding: 5vh 20px;
    box-sizing: border-box;
    overflow-y: auto;
    overflow-x: hidden;
  }

  .urundetay-product-detail-modal {
    background: white;
    border-radius: 20px;
    width: 100%;
    max-width: 1640px;
    position: relative;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
    font-family: "Plus Jakarta Sans", sans-serif;
  }

  .urundetay-product-modal-close {
    position: absolute;
    top: 20px;
    right: 20px;
    background: none;
    border: none;
    font-size: 1.8rem;
    color: #999;
    cursor: pointer;
    z-index: 1001;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
  }

  .urundetay-product-modal-close:hover {
    background: #f5f5f5;
    color: #333;
  }

  .urundetay-product-modal-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    background-color: #F4F4F4;
    gap: 40px;
    padding: 30px 40px 40px;
    overflow: hidden;
  }

  /* Sol Taraf - Ürün Görseli */
  .urundetay-product-modal-left {
    display: flex;
    flex-direction: column;
    gap: 30px;
    overflow: hidden;
    position: relative;
    min-width: 0;
  }

  .urundetay-product-image-main {
    text-align: center;
    margin-bottom: 20px;
    border-radius: 20px;
    box-shadow: 7px 7px 34px 0px #0000000A;
    padding: 20px;
    background-color: #FAFAFA;
    position: relative;
    width: 100%;
    max-width: 100%;
    height: 392px;
    overflow: hidden;
    contain: layout style;
  }

  .urundetay-product-image-main img {
    width: 100%;
    max-width: 550px;
    height: auto;
    object-fit: contain;
    display: block;
    margin: 0 auto;
  }

  .urundetay-lightbox-trigger {
    cursor: zoom-in;
    transition: transform 0.2s ease;
  }

  .urundetay-lightbox-trigger:hover {
    transform: scale(1.02);
  }

  .urundetay-lightbox {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.85);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 12000;
    padding: 20px;
  }

  .urundetay-lightbox.is-visible {
    display: flex;
  }

  body.urundetay-lightbox-open {
    overflow: hidden;
  }

  .urundetay-lightbox-content {
    background: #fff;
    border-radius: 16px;
    width: min(1220px, 92vw);
    max-width: 1220px;
    max-height: 92vh;
    padding: clamp(22px, 3vw, 34px) clamp(20px, 3vw, 34px) 20px;
    position: relative;
    box-shadow: 0 20px 45px rgba(0, 0, 0, 0.35);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
  }

  .urundetay-lightbox-image-wrapper {
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 9;
    min-height: 360px;
    max-height: 74vh;
    overflow: hidden;
    border-radius: 18px;
    cursor: grab;
  }

  .urundetay-lightbox-image-wrapper:active {
    cursor: grabbing;
  }

  .urundetay-lightbox-content img {
    width: 100%;
    height: 100%;
    max-height: none;
    object-fit: contain;
    transition: transform 0.15s ease-out;
    transform-origin: center center;
    will-change: transform;
  }

  .urundetay-lightbox-caption {
    font-size: 1rem;
    color: #001b48;
    text-align: center;
    margin: 0;
    display: none;
  }

  .urundetay-lightbox.is-visible .urundetay-lightbox-caption {
    display: block;
  }

  .urundetay-lightbox-close {
    position: absolute;
    top: 12px;
    right: 12px;
    width: 40px;
    height: 40px;
    border: none;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.05);
    color: #001b48;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background 0.2s ease, color 0.2s ease;
  }

  .urundetay-lightbox-close:hover {
    background: rgba(0, 0, 0, 0.12);
    color: #000;
  }

  .urundetay-lightbox-controls {
    display: flex;
    gap: 8px;
    position: absolute;
    top: 16px;
    left: 16px;
    z-index: 2;
  }

  .urundetay-lightbox-zoom-btn {
    width: 42px;
    height: 42px;
    border-radius: 10px;
    border: none;
    background: rgba(255, 255, 255, 0.9);
    box-shadow: 0 10px 25px rgba(1, 27, 72, 0.15);
    color: #001b48;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: transform 0.15s ease, background 0.15s ease;
  }

  .urundetay-lightbox-zoom-btn:hover {
    transform: translateY(-2px);
    background: #ffffff;
  }

  .urundetay-lightbox-zoom-btn .material-icons {
    font-size: 1.4rem;
  }

  @media (max-width: 768px) {
    .urundetay-lightbox-content {
      padding: 20px;
      max-width: 95vw;
      gap: 10px;
    }

    .urundetay-lightbox-image-wrapper {
      aspect-ratio: 4 / 3;
      min-height: 280px;
      max-height: 60vh;
    }

    .urundetay-lightbox-controls {
      top: 12px;
      left: 12px;
    }

    .urundetay-lightbox-zoom-btn {
      width: 38px;
      height: 38px;
    }
  }

  .urundetay-warranty-logo {
    position: absolute;
    bottom: 10px;
    right: 10px;
    z-index: 10;
    width: 100px;
    height: auto;
    opacity: 0.9;
  }

  .urundetay-warranty-logo img {
    width: 100%;
    height: auto;
    display: block;
  }

  .urundetay-warranty-logo-mobile {
    width: 40px;
    bottom: 8px;
    right: 8px;
  }

  .urundetay-product-image-normal {
    position: relative;
  }

  .urundetay-product-image-dots {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-bottom: 30px;
  }

  .urundetay-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #ddd;
    cursor: pointer;
    transition: all 0.3s ease;
  }

  .urundetay-dot.active {
    background: #0ea5e9;
  }

  .urundetay-product-features-icons {
    display: flex;
    gap: 15px;
    align-items: center;
    justify-content: flex-start;
    margin: 30px 0;
    flex-wrap: wrap;
  }

  .urundetay-feature-icon-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    flex: 1 1 0;
    min-width: 0;
    max-width: 120px;
  }

  .urundetay-product-features-icons img {
    width: 50px;
    height: 50px;
    object-fit: contain;
  }

  .urundetay-feature-icon-title {
    font-size: 12px;
    color: #666;
    text-align: center;
    font-weight: 500;
    width: auto;
    max-width: 79%;
    word-wrap: unset;
  }

  /* Advantages Icons */
  .urundetay-product-advantages-icons {
    display: flex;
    gap: 1px;
    justify-content: flex-start;
    align-items: center;
    margin: 20px 0;
    flex-wrap: wrap;
  }

  .urundetay-advantage-icon-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    flex: 1 1 0;
    min-width: 0;
    max-width: 120px;
  }

  .urundetay-product-advantages-icons img {
    width: 50px;
    height: 50px;
    object-fit: contain;
  }

  .urundetay-advantage-icon-title {
    font-size: 12px;
    color: #666;
    text-align: center;
    font-weight: 500;
    width: auto;
    max-width: 99%;
    word-wrap: break-word;
  }

  /* Sağ Taraf - Ürün Bilgileri */
  .urundetay-product-modal-right {
    display: flex;
    flex-direction: column;
    gap: 25px;
    overflow: hidden;
    position: relative;
    min-width: 0;
  }

  /* Başlık ve Filtre Container - Alt Alta */
  .urundetay-title-filter-container {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 24px;
    width: 100%;
  }

  .urundetay-product-modal-title {
    color: #001b48;
    font-size: 1.75rem;
    width: 60%;
    font-weight: 600;
    margin: 0;
    line-height: 1.3;
  }

  /* Filtre Kodu Box - Title Altında */
  .urundetay-filter-code-box {
    background-color: #001b48;
    color: white;
    padding: 10px 18px;
    border-radius: 6px;
    font-size: 28px;
    font-weight: bolder;
    letter-spacing: 0.5px;
    align-self: flex-start;
    font-family: "Plus Jakarta Sans", sans-serif;
    display: inline-flex;
    align-items: center;
    gap: 8px;
  }

  .urundetay-filter-code-box .material-icons {
    font-size: 18px;
    opacity: 0.9;
    color: #008ACE;
    display: none;
  }

  .urundetay-product-info-section {
    display: flex;
    flex-direction: column;
    gap: 12px;
  }

  /* Technical Sections - Cleaning Process & Working Principle */
  .urundetay-technical-section {
    margin-top: 20px;
  }

  .urundetay-technical-content {
    background: #f8fafc;
    padding: 20px;
    border-radius: 8px;
  }

  .urundetay-technical-content p {
    color: #475569; font-size: 15px; line-height: 1.7; margin: 0; padding: 4px;
  }

  /* Highlight Box - Powerful Filtration */
  .urundetay-highlight-box {
    background: linear-gradient(135deg, #008ACE 0%, #006ba1 100%);
    color: white;
    padding: 20px;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 138, 206, 0.2);
  }

  .urundetay-highlight-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0 0 16px 0;
    color: white;
  }

  .urundetay-highlight-text {
    font-size: 1rem;
    line-height: 1.7;
    margin: 0;
    color: rgba(255, 255, 255, 0.95);
  }

  .urundetay-highlight-content {
    font-size: 1rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.95);
  }

  .urundetay-highlight-content p {
    margin: 0 0 12px 0;
  }

  .urundetay-highlight-content p:last-child {
    margin-bottom: 0;
  }

  .urundetay-mobile-highlight {
    margin-top: 20px;
  }

  .urundetay-product-section-title {
    color: #001B48;
    font-size: 20px;
    font-weight: 600;
    letter-spacing: 0.5px;
    margin: 0;
    opacity: 0.8;
    text-transform: uppercase;
  }

  .urundetay-product-features-text p {
    color: #001B48;
    font-size: 0.9rem;
    line-height: 1.8;
    margin: 0;
    width: 85%;
  }

  /* Download Butonları */
  .urundetay-product-downloads-section {
    display: flex;
    gap: 0;
    align-items: stretch;
  }

  .urundetay-download-buttons {
    display: flex;
    flex-direction: column;
    gap: 0;
    flex: 1;
  }

  .urundetay-download-btn {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 20px;
    background: #001B48;
    color: #7EABB4;
    border: none;
    border-top: 1px solid #334155;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: left;
    width: 410px;
    height: 85px;
  }

  .urundetay-download-btn:first-child {
    border-top: none;
  }

  .urundetay-download-btn:hover span {
    font-weight: bold;
    color: white;
  }

  .urundetay-download-btn i {
    font-size: 1.2rem;
  }

  .urundetay-online-catalog {
    display: flex;
    align-items: stretch;
  }

  .urundetay-online-catalog-btn {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: unset;
    padding: 18px 25px;
    gap: 12px;
    background: #008ACE;
    color: white;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    min-height: 80px;
    width: 351px;
    height: 171px;
  }


  .urundetay-online-catalog-btn i {
    font-size: 2rem;
  }

  .urundetay-catalog-text {
    display: flex;
    flex-direction: column;
    text-align: left;
  }

  .urundetay-product-image-main {
    text-align: center;
    margin-bottom: 20px;
    border-radius: 20px;
    box-shadow: 7px 7px 34px 0px #0000000A;
    padding: 20px;
    background-color: #FAFAFA;
    position: relative;
    width: 100%;
    max-width: 100%;
    height: 392px;
    overflow: hidden;
    contain: layout style;
  }

  .urundetay-catalog-subtitle {
    font-size: 22px;
    font-weight: 500;
  }

  /* Send Message Section */
  .urundetay-send-message-section {
    margin-top: 15px;
    padding-top: 25px;
    border-top: 1px solid #e2e8f0;
  }

  .urundetay-message-section-title {
    color: #1e3a8a;
    font-size: 1.3rem;
    font-weight: 600;
    margin: 0 0 8px 0;
  }

  .urundetay-message-description {
    color: #64748b;
    margin-bottom: 20px;
    line-height: 1.5;
    font-size: 0.85rem;
  }

  .urundetay-message-form {
    display: flex;
    flex-direction: column;
    gap: 15px;
  }

  .urundetay-form-row {
    display: flex;
    gap: 15px;
  }

  .urundetay-form-row.single {
    flex-direction: column;
  }

  .urundetay-form-input {
    flex: 1;
    padding: 12px 16px;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    font-size: 0.9rem;
    transition: all 0.3s ease;
  }

  .urundetay-form-input:focus {
    outline: none;
    border-color: #0ea5e9;
    box-shadow: 0 0 0 3px rgba(14, 165, 233, 0.1);
  }

  .urundetay-file-upload-btn {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 16px;
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    color: #64748b;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 0.9rem;
    width: 50%;
  }

  .urundetay-file-upload-btn:hover {
    background: #f1f5f9;
    border-color: #cbd5e1;
  }

  .urundetay-form-checkbox {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.85rem;
    color: #64748b;
  }

  .urundetay-form-checkbox input[type="checkbox"] {
    margin: 0;
  }

  .urundetay-form-checkbox a {
    color: #0ea5e9;
    text-decoration: none;
  }

  .urundetay-form-checkbox a:hover {
    text-decoration: underline;
  }

  .urundetay-submit-btn {
    background: linear-gradient(135deg, #0ea5e9, #0284c7);
    color: white;
    border: none;
    padding: 14px 30px;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
  }

  .urundetay-submit-btn:hover {
    background: linear-gradient(135deg, #0284c7, #0369a1);
    transform: translateY(-1px);
    box-shadow: 0 8px 25px rgba(14, 165, 233, 0.3);
  }

  /* Desktop Responsive - Sadece büyük ekranlar için optimizasyonlar */
  @media (max-width: 1570px) and (min-width: 1201px) {
    .urundetay-product-modal-content {
      gap: 25px;
      padding: 25px 30px 35px;
      overflow: hidden;
    }

    .urundetay-product-modal-left,
    .urundetay-product-modal-right {
      overflow: hidden;
      min-width: 0;
    }

    .urundetay-product-modal-title {
      font-size: 1.6rem;
    }

    .urundetay-filter-code-box {
      padding: 8px 16px;
      font-size: 0.95rem;
      gap: 6px;
    }

    .urundetay-filter-code-box .material-icons {
      font-size: 16px;
    }

    .urundetay-technical-content {
      padding: 16px;
    }

    .urundetay-technical-content p {
      font-size: 0.9rem;
    }

    .urundetay-highlight-box {
      padding: 24px;
    }

    .urundetay-highlight-title {
      font-size: 1.3rem;
    }

    .urundetay-highlight-text {
      font-size: 0.95rem;
    }

    .urundetay-product-image-main {
      max-width: 100%;
      height: 350px;
    }
  }

  @media (max-width: 1200px) and (min-width: 1026px) {
    .urundetay-product-modal-content {
      gap: 30px;
      padding: 25px 30px 35px;
      overflow: hidden;
    }

    .urundetay-product-modal-left,
    .urundetay-product-modal-right {
      overflow: hidden;
      min-width: 0;
    }

    .urundetay-product-modal-title {
      font-size: 1.5rem;
    }

    .urundetay-filter-code-box {
      padding: 6px 14px;
      font-size: 0.85rem;
      gap: 5px;
    }

    .urundetay-filter-code-box .material-icons {
      font-size: 14px;
    }

    .urundetay-product-image-main {
      max-width: 100%;
      height: 320px;
    }
  }

  /* Orta Ekran - Catalog buton problemi çözümü */
  @media (max-width: 1570px) and (min-width: 1025px) {
    .urundetay-product-modal-content {
      grid-template-columns: 1fr 1fr;
      gap: 20px;
      padding: 25px;
      overflow: hidden;
    }

    .urundetay-product-modal-left,
    .urundetay-product-modal-right {
      overflow: hidden;
      min-width: 0;
      width: 100%;
    }

    .urundetay-product-image-main {
      width: 100%;
      max-width: 100%;
      height: 300px;
    }

    .urundetay-product-downloads-section {
      display: flex;
      flex-direction: row;
      gap: 0;
      align-items: stretch;
    }

    .urundetay-download-buttons {
      display: flex;
      flex-direction: column;
      gap: 0;
      flex: 1;
    }

    .urundetay-download-btn {
      width: 100%;
      height: 75px;
      font-size: 0.85rem;
    }

    .urundetay-online-catalog {
      display: flex;
      align-items: stretch;
    }

    .urundetay-online-catalog-btn {
      width: 100%;
      height: 225px;
      flex-direction: row;
      align-items: center;
      padding: 20px 30px;
      gap: 20px;
    }

    .urundetay-catalog-text {
      text-align: left;
    }

    .urundetay-catalog-title,
    .urundetay-catalog-subtitle {
      font-size: 28px;
    }
  }

  .urundetay-product-image-main .swiper-slide img {
    width: 100%;
    max-width: 550px;
    height: auto;
    object-fit: contain;
    display: block;
    margin: 0 auto;
  }

  .swiper-button-next, .swiper-button-prev {
    width: 35px !important;
    height: 35px !important;
    background: #001b48;
    border-radius: 50%;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
    color: #ffffff !important;
  }

  .swiper-button-next:after, .swiper-button-prev:after {
    font-size: 15px !important;
    font-weight: bold;
  }

  /* Swiper Slide Styles */
  .swiper-slide {
    display: flex;
    justify-content: center;
    align-items: center;
    transition: all 0.3s ease;
  }

  .urundetay-product-image-main .swiper-slide {
    width: 100% !important;
  }

  .urundetay-mobile-swiper .swiper-slide {
    width: 85% !important;
    padding: 10px;
  }

  /* Swiper Container Styles */
  .urundetay-product-image-main.swiper {
    position: relative;
    width: 100%;
    max-width: 100%;
    margin: 0 auto;
    z-index: 1;
    overflow: hidden;
    isolation: isolate;
    contain: layout style;
  }

  .urundetay-product-image-main .swiper-wrapper {
    position: relative;
    z-index: 1;
    display: flex;
    transition-property: transform;
    box-sizing: content-box;
  }

  .urundetay-product-image-main .swiper-slide {
    width: 100% !important;
    position: relative;
    flex-shrink: 0;
    transition: transform 0.3s ease;
  }

  /* Navigation Buttons */
  .urundetay-product-image-main .swiper-button-next,
  .urundetay-product-image-main .swiper-button-prev {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    width: 35px !important;
    height: 35px !important;
    margin-top: 0;
    cursor: pointer;
  }

  .urundetay-product-image-main .swiper-button-prev {
    left: 10px;
  }

  .urundetay-product-image-main .swiper-button-next {
    right: 50px;
  }

  /* Pagination */
  .urundetay-product-image-main .swiper-pagination {
    position: absolute;
    bottom: 10px;
    left: 0;
    right: 0;
    z-index: 10;
    display: flex;
    justify-content: center;
    gap: 8px;
  }

  .urundetay-product-image-main .swiper-pagination-bullet {
    position: relative;
    z-index: 1;
  }

  /* Container içindeki görsel */
  .urundetay-product-image-main .swiper-slide img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: contain;
    position: relative;
    z-index: 1;
  }

  /* Mobile Swiper Specific Styles */
  .urundetay-mobile-swiper.swiper {
    position: relative;
    width: 100%;
    z-index: 1;
    overflow: hidden;
    padding: 0;
  }

  .urundetay-mobile-swiper .swiper-wrapper {
    display: flex;
    align-items: center;
  }

  .urundetay-mobile-swiper .swiper-slide {
    width: 100% !important;
    flex-shrink: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0 20px;
    box-sizing: border-box;
  }

  .urundetay-mobile-swiper .swiper-slide img {
    width: 100%;
    max-width: 320px;
    height: auto;
    max-height: 250px;
    object-fit: contain;
    border-radius: 12px;
  }

  @media (max-width: 768px) {
    .urundetay-product-image-main.swiper,
    .urundetay-mobile-swiper.swiper {
      overflow: hidden;
    }

    .urundetay-mobile-swiper .swiper-slide {
      width: 100% !important;
      padding: 0 15px;
    }

    .urundetay-product-image-main .swiper-button-next {
      right: 5px;
    }

    .urundetay-product-image-main .swiper-button-prev {
      left: 5px;
    }
  }

  @media (max-width: 480px) {
    .urundetay-mobile-swiper .swiper-slide {
      width: 100% !important;
      padding: 0 10px;
    }

    .urundetay-mobile-swiper .swiper-slide img {
      max-width: 280px;
      max-height: 200px;
    }
  }

  .swiper-button-next:hover, .swiper-button-prev:hover {
    background: #fff;
    color: #008ACE !important;
  }

  /* Swiper Pagination Dots (Görsele Uygun Stil) */
  .swiper-pagination-bullet {
      width: 14px;
      height: 14px;
      background-color: transparent;
      border: 2px solid #cccccc;
      opacity: 1;
      transition: all 0.3s ease;
  }

  .swiper-pagination-bullet-active {
      background: #0ea5e9; /* Tema mavisi */
      border-color: #0ea5e9;
  }

  /* ================================
     MOBİL İÇERİK STİLLERİ
     ================================ */

  .urundetay-mobile-content {
    display: none; /* Başlangıçta gizli */
    background: #fff;
    min-height: 100vh;
    position: relative;
    overflow-x: hidden;
    font-family: "Plus Jakarta Sans", sans-serif;
    box-sizing: border-box;
  }

  /* Mobil Header */
  .urundetay-mobile-header {
    position: sticky;
    top: 0;
    z-index: 100;
    background: #001B48;
    padding: 15px 20px;
    display: flex;
    align-items: center;
    gap: 15px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  }

  .urundetay-mobile-back-btn {
    background: none;
    border: none;
    color: white;
    font-size: 1.5rem;
    cursor: pointer;
    padding: 5px;
    border-radius: 50%;
    transition: background 0.3s ease;
  }

  .urundetay-mobile-back-btn:hover {
    background: rgba(255, 255, 255, 0.1);
  }

  .urundetay-mobile-title {
    color: white;
    font-size: 1.2rem;
    font-weight: 600;
    margin: 0;
  }

  /* Mobil Görsel Container */
  .urundetay-mobile-image-container {
    position: relative;
    background: #f8f9fa;
    padding: 20px 0;
  }

  .urundetay-mobile-swiper {
    width: 100%;
    height: 280px;
    overflow: hidden;
    position: relative;
  }

  .urundetay-mobile-swiper .swiper-slide {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0 20px;
  }

  .urundetay-mobile-swiper .swiper-slide img {
    width: 100%;
    max-width: 320px;
    height: auto;
    max-height: 250px;
    object-fit: contain;
    border-radius: 12px;
  }

  /* Mobil Body */
  .urundetay-mobile-body {
    padding: 20px;
    padding-bottom: 120px; /* Contact button için daha fazla alan */
    box-sizing: border-box;
  }

  /* Mobil Ürün Header */
  .urundetay-mobile-product-header {
    margin-bottom: 20px;
  }

  .urundetay-mobile-product-title {
    color: #001B48;
    font-size: 1.4rem;
    font-weight: 700;
    line-height: 1.3;
    margin: 0 0 10px 0;
  }

  /* Mobil Filtre Kodu Box */
  .urundetay-mobile-filter-code-box {
    background: white;
    color: #001B48;
    padding: 8px 14px;
    border-radius: 6px;
    border: 2px solid #e2e8f0;
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    margin-top: 10px;
    display: inline-flex;
    align-items: center;
    gap: 6px;
  }

  .urundetay-mobile-filter-code-box .material-icons {
    font-size: 16px;
    opacity: 0.9;
  }

  /* Mobil Features */
  .urundetay-mobile-features {
    display: flex;
    gap: 15px;
    justify-content: flex-start;
    align-items: center;
    margin: 20px 0;
    flex-wrap: wrap;
  }

  .urundetay-mobile-feature-icon-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    flex: 1 1 0;
    min-width: 0;
    max-width: 120px;
  }

  .urundetay-mobile-features img {
    width: 50px;
    height: 50px;
    object-fit: contain;
  }

  .urundetay-mobile-feature-icon-title {
    font-size: 11px;
    color: #666;
    text-align: center;
    font-weight: 500;
    width: auto;
    max-width: 86%;
    word-wrap: unset;
  }

  /* Mobil Advantages Icons */
  .urundetay-mobile-advantages-icons {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
    margin: 15px 0 0 0;
    width: 100%;
    box-sizing: border-box;
  }

  .urundetay-mobile-advantage-icon-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    width: 100%;
    box-sizing: border-box;
  }

  .urundetay-mobile-advantages-icons img {
    width: 50px;
    height: 50px;
    object-fit: contain;
    max-width: 100%;
  }

  .urundetay-mobile-advantage-icon-title {
    font-size: 10px;
    color: #666;
    text-align: center;
    font-weight: 500;
    width: 100%;
    word-wrap: break-word;
    line-height: 1.3;
  }

  /* Mobil Sections */
  .urundetay-mobile-section {
    margin: 25px 0;
    padding: 20px;
    background: #f8f9fa;
    border-radius: 12px;
    box-sizing: border-box;
    overflow: hidden;
  }

  .urundetay-mobile-section-title {
    color: #001B48;
    font-size: 1rem;
    font-weight: 700;
    margin: 0 0 12px 0;
    text-transform: uppercase;
    letter-spacing: 0.5px;
  }

  .urundetay-mobile-section-content {
    padding: 0;
    box-sizing: border-box;
  }

  .urundetay-mobile-section-content p {
    color: #495057;
    font-size: 0.9rem;
    line-height: 1.6;
    margin: 0;
  }

  /* Mobil Downloads */
  .urundetay-mobile-downloads {
    margin: 30px 0;
  }

  .urundetay-mobile-download-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
    margin-top: 15px;
    width: 100%;
    box-sizing: border-box;
    overflow: hidden;
  }

  .urundetay-mobile-download-btn {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    background: #001B48;
    color: white;
    border: none;
    border-radius: 12px;
    padding: 20px 15px;
    cursor: pointer;
    transition: all 0.3s ease;
    gap: 8px;
    width: 100%;
    box-sizing: border-box;
    overflow: hidden;
  }

  .urundetay-mobile-download-btn:hover {
    background: #002856;
    transform: translateY(-2px);
  }

  .urundetay-mobile-download-btn:active {
    transform: translateY(0);
  }

  .urundetay-mobile-download-btn img {
    width: 24px;
    height: 24px;
    filter: brightness(0) invert(1);
  }

  .urundetay-mobile-download-btn span {
    font-size: 0.8rem;
    font-weight: 500;
    line-height: 1.2;
  }

  /* Mobil Contact */
  .urundetay-mobile-contact {
    position: fixed;
    bottom: 20px;
    bottom: calc(20px + env(safe-area-inset-bottom)); /* iOS safe area */
    left: 20px;
    right: 20px;
    z-index: 1000;
    max-width: calc(100vw - 40px);
    box-sizing: border-box;
  }

  .urundetay-mobile-contact-btn {
    width: 100%;
    background: linear-gradient(135deg, #008ACE, #0ea5e9);
    color: white;
    border: none;
    border-radius: 16px;
    padding: 18px 20px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    box-shadow: 0 6px 30px rgba(0, 138, 206, 0.4);
    transition: all 0.3s ease;
  }

  .urundetay-mobile-contact-btn:hover {
    background: linear-gradient(135deg, #0276a8, #0284c7);
    transform: translateY(-2px);
    box-shadow: 0 8px 35px rgba(0, 138, 206, 0.5);
  }

  .urundetay-mobile-contact-btn:active {
    transform: translateY(0);
  }

  /* Mobil Contact Modal */
  .urundetay-mobile-contact-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    display: none;
    justify-content: center;
    align-items: flex-end;
    z-index: 10000;
    padding: 0;
  }

  .urundetay-mobile-contact-modal-content {
    background: white;
    width: 100%;
    max-height: 80vh;
    border-radius: 20px 20px 0 0;
    overflow-y: auto;
    overflow-x: hidden;
    animation: slideUp 0.3s ease-out;
    padding-bottom: env(safe-area-inset-bottom); /* iOS safe area */
    box-sizing: border-box;
  }

  @keyframes slideUp {
    from {
      transform: translateY(100%);
    }
    to {
      transform: translateY(0);
    }
  }

  .urundetay-mobile-contact-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 25px;
    border-bottom: 1px solid #e9ecef;
    position: sticky;
    top: 0;
    background: white;
    z-index: 1;
  }

  .urundetay-mobile-contact-header h3 {
    color: #001B48;
    font-size: 1.2rem;
    font-weight: 600;
    margin: 0;
  }

  .urundetay-mobile-contact-close {
    background: none;
    border: none;
    font-size: 1.5rem;
    color: #6c757d;
    cursor: pointer;
    padding: 5px;
    border-radius: 50%;
    transition: background 0.3s ease;
  }

  .urundetay-mobile-contact-close:hover {
    background: #f8f9fa;
  }

  .urundetay-mobile-contact-form {
    padding: 25px;
    display: flex;
    flex-direction: column;
    gap: 15px;
  }

  .urundetay-mobile-form-input,
  .urundetay-mobile-form-textarea {
    width: 100%;
    padding: 15px;
    border: 2px solid #e9ecef;
    border-radius: 12px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
    box-sizing: border-box;
  }

  .urundetay-mobile-form-input:focus,
  .urundetay-mobile-form-textarea:focus {
    outline: none;
    border-color: #008ACE;
  }

  .urundetay-mobile-form-textarea {
    min-height: 120px;
    resize: vertical;
    font-family: inherit;
  }

  .urundetay-mobile-form-submit {
    background: linear-gradient(135deg, #008ACE, #0ea5e9);
    color: white;
    border: none;
    border-radius: 12px;
    padding: 16px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 10px;
  }

  .urundetay-mobile-form-submit:hover {
    background: linear-gradient(135deg, #0276a8, #0284c7);
    transform: translateY(-1px);
  }

  .urundetay-mobile-form-submit:active {
    transform: translateY(0);
  }

  /* Mobil-specific adjustments */
  @media (max-width: 480px) {
    .urundetay-mobile-download-grid {
      grid-template-columns: 1fr;
      gap: 10px;
    }

    .urundetay-mobile-download-btn {
      flex-direction: row;
      justify-content: flex-start;
      text-align: left;
      padding: 15px 20px;
    }

    .urundetay-mobile-download-btn img {
      margin-right: 12px;
    }

    .urundetay-mobile-swiper {
      height: 240px;
    }

    .urundetay-mobile-product-title {
      font-size: 1.2rem;
    }

    .urundetay-mobile-body {
      padding: 15px;
      padding-bottom: 130px; /* Contact button için alan */
    }

    .urundetay-mobile-advantages-icons {
      grid-template-columns: repeat(3, 1fr);
      gap: 10px;
    }

    .urundetay-mobile-advantages-icons img {
      width: 45px;
      height: 45px;
    }

    .urundetay-mobile-advantage-icon-title {
      font-size: 9px;
    }

    .urundetay-mobile-section {
      padding: 15px;
    }
  }

  @media (max-width: 360px) {
    .urundetay-mobile-header {
      padding: 12px 15px;
    }

    .urundetay-mobile-title {
      font-size: 1.1rem;
    }

    .urundetay-mobile-body {
      padding: 12px;
      padding-bottom: 130px;
    }

    .urundetay-mobile-section {
      padding: 12px;
    }

    .urundetay-mobile-contact-form {
      padding: 20px;
    }

    .urundetay-mobile-advantages-icons {
      grid-template-columns: repeat(3, 1fr);
      gap: 8px;
    }

    .urundetay-mobile-advantages-icons img {
      width: 40px;
      height: 40px;
    }

    .urundetay-mobile-advantage-icon-title {
      font-size: 8px;
      line-height: 1.2;
    }
  }

  /* Tablet ve Mobil Responsive */
  @media (max-width: 768px) {
    .urundetay-product-modal-content {
      grid-template-columns: 1fr;
      gap: 20px;
      padding: 20px;
    }

    .urundetay-product-modal-left,
    .urundetay-product-modal-right {
      width: 100%;
    }

    .urundetay-product-modal-title {
      width: 100%;
      font-size: 1.5rem;
      margin-bottom: 15px;
    }

    .urundetay-product-features-text p {
      width: 100%;
    }

    .urundetay-product-downloads-section {
      display: flex;
      flex-direction: row;
      gap: 0;
      align-items: stretch;
    }

    .urundetay-download-buttons {
      flex: 1;
    }

    .urundetay-download-btn {
      width: 100%;
      height: auto;
      min-height: 70px;
    }

    .urundetay-online-catalog {
      display: flex;
      align-items: stretch;
    }

    .urundetay-online-catalog-btn {
      width: 100%;
      height: auto;
      min-height: 210px;
      padding: 20px;
    }

    .urundetay-catalog-subtitle {
      font-size: 24px;
    }
  }

  /* Mobil Responsive */
  @media (max-width: 480px) {
    .urundetay-product-modal-content {
      padding: 15px;
    }

    .urundetay-product-modal-title {
      font-size: 1.3rem;
    }

    .urundetay-product-features-icons {
      flex-direction: row;
      gap: 10px;
    }

    .urundetay-product-section-title {
      font-size: 18px;
    }

    .urundetay-product-features-text p {
      font-size: 0.85rem;
    }

    .urundetay-form-row {
      flex-direction: column;
    }

    .urundetay-product-downloads-section {
      flex-direction: column;
      gap: 0;
    }

    .urundetay-download-buttons {
      width: 100%;
      margin-bottom: 0;
    }

    .urundetay-online-catalog {
      width: 100%;
      margin-top: 0;
    }

    .urundetay-online-catalog-btn {
      width: 100%;
      min-height: 120px;
    }
  }

  /* Büyük Ekran - Tek Sütun */
  @media (min-width: 1025px) and (max-width: 1570px) {
    .urundetay-product-modal-content {
      grid-template-columns: 1fr 1fr;
      gap: 20px;
      padding: 25px;
    }

    .urundetay-product-modal-left,
    .urundetay-product-modal-right {
      width: 100%;
    }

    .urundetay-product-modal-title {
      width: 100%;
      font-size: 1.4rem;
    }

    .urundetay-product-features-text p {
      width: 100%;
      font-size: 0.85rem;
    }

    .urundetay-product-downloads-section {
      display: flex;
      flex-direction: row;
      justify-content: flex-start;
    }

    .urundetay-download-buttons {
      display: flex;
      flex-direction: column;
      gap: 0;
      flex: 2;
    }

    .urundetay-download-btn {
      width: 100%;
      height: 70px;
      font-size: 0.85rem;
    }

    .urundetay-online-catalog {
      flex: 1;
    }

    .urundetay-online-catalog-btn {
      width: 100%;
      height: 139px;
      padding: 15px;
    }

    .urundetay-catalog-title,
    .urundetay-catalog-subtitle {
      font-size: 24px;
    }

    .urundetay-product-section-title {
      font-size: 18px;
    }

    .urundetay-product-image-main {
      width: 100%;
      height: 350px;
    }
  }

  .error-404 {
    min-height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #ffffff;
    padding: 60px 0;
  }

  .error-content {
    text-align: center;
    max-width: 600px;
    padding: 40px 20px;
  }

  .error-number {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 40px;
    gap: 20px;
    color: #042A74;
  }

  .error-number .four {
    font-size: 200px;
    font-weight: 900;
    color: #042A74;
    line-height: 1;
    text-shadow: 0 4px 8px rgba(30, 58, 138, 0.1);
  }



  .error-title {
    font-size: 36px;
    font-weight: 700;
    color: #001B48;
    margin-bottom: 24px;
    line-height: 1.2;
  }

  .error-description {
    font-size: 16px;
    color: #001B48;
    line-height: 1.6;
    margin-bottom: 90px;
  }

  .btn-home {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(135deg, #001B48 0%, #1562AF 100%);
    color: white;
    padding: 16px 32px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 16px rgba(0, 27, 72, 0.3);
  }

  .btn-home:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0, 27, 72, 0.4);
    color: white;
    text-decoration: none;
  }

  .btn-home svg {
    transition: transform 0.3s ease;
  }

  .btn-home:hover svg {
    transform: translateX(4px);
  }



  @media (max-width: 768px) {
    .error-number .four {
        font-size: 120px;
    }

    .error-number lottie-player {
        width: 120px !important;
        height: 120px !important;
    }

    .error-title {
        font-size: 28px;
    }

    .error-description {
        font-size: 16px;
    }

    .error-number {
        gap: 10px;
    }
  }

  @media (max-width: 480px) {
    .error-number {
        flex-direction: row;
        gap: 10px;
        justify-content: center;
        align-items: center;
    }

    .error-number .four {
        font-size: 80px;
    }

    .error-number lottie-player {
        width: 80px !important;
        height: 80px !important;
    }

    .error-title {
        font-size: 24px;
    }
  }
    /* Blog Hero Section */
    .aytokblogsayfasi1 {
        min-height: 70vh;
        display: flex;


        align-items: center;
      }

      .blog-hero-container {
        max-width: 1420px;
        margin: 0 auto;
        padding: 0 20px;
        display: grid;
        background: url("https://i.hizliresim.com/t9vcn1w.png");
        background-size: cover;
        background-position: center;
        background-repeat: no-repeat;
        grid-template-columns: 1fr 1fr;
        height: 520px;

        gap: 60px;
        align-items: center;
      }

      .blog-hero-image {
        position: relative;
        overflow: hidden;
        aspect-ratio: 16/9;
        width: 107%;
        height: 100%;
      }

      .blog-hero-image img {
        width: 100%;
        height: 100%;
        object-fit: contain;
        border-radius: 20px;
      }

      .blog-hero-content {
        padding: 20px 30px;
      }

      .blog-hero-badges {
        display: flex;
        gap: 0;
        margin-bottom: 20px;
      }

      .blog-badge-new {
        background: #008ACE;
        color: white;
        padding: 8px 16px;
        border-radius: 20px 0 0 20px;
        font-size: 14px;
        font-weight: 600;
        position: relative;
      }

      .blog-badge-new::after {
          z-index: 1;
          content: '';
          position: absolute;
          right: -10px;
          top: 0;
          bottom: 0;
          width: 31px;
          background: #008ACE;
          border-radius: 0 50% 50% 0;
      }

      .blog-badge-time {
        background: #E5E5E5;
        color: #666;
        padding: 8px 16px;
        border-radius: 0 20px 20px 0;
        font-size: 14px;
        filter: opacity(0.8);
        font-weight: 500;
      }

      .blog-hero-title {
        font-size: 48px;
        font-weight: 1;
        color: #008ACE;
        line-height: 1.2;
        margin-bottom: 24px;
      }

      .blog-hero-description {
        font-size: 16px;
        color: #001B48;
        line-height: 1.6;
        margin-bottom: 32px;
        opacity: 0.8;
        filter:opacity(0.8);
      }

      .blog-hero-button {
        display: inline-flex;
        align-items: center;
        gap: 10px;
        color: #008ACE;
        border-radius: 8px;
        text-decoration: none;
        font-weight: 500;
        font-size: 14px;
        transition: all 0.3s ease;
        border: none;
      }



      /* Blog Posts Section */
      .aytokblogsayfasi2 {
        padding: 100px 0;
        background: #a6b3b540;
        border: 1px solid #DEFFFB6A;
        margin: 0 122px;
        border-radius: 20px;
      }

      .blog-posts-container {
        max-width: 1300px;
        margin: 0 auto;
        padding: 0 20px;
      }

      .blog-posts-header {
        text-align: center;
        margin-bottom: 60px;
      }

      .blog-posts-title {
        font-size: 42px;
        font-weight: 1;
        color: #14245A;
        margin-bottom: 16px;
      }

      .blog-posts-subtitle {
        font-size: 16px;
        color: #14245A;
        max-width: 800px;
        margin: 0 auto;
        filter: opacity(0.8);
        opacity: 0.8;
        line-height: 1.6;
      }

      /* Blog Filters Section */
      .blog-filters-section {
        display: flex;
        justify-content: space-between;
        align-items: center;
        margin: 50px 0;
        gap: 20px;
      }

      .blog-filters {
        display: flex;
        gap: 10px;
        flex-wrap: wrap;
      }

      .blog-filter-btn {
        background: #f8f9fa;
        border: 1px solid #e9ecef;
        color: #6c757d;
        padding: 8px 16px;
        border-radius: 20px;
        font-size: 14px;
        font-weight: 500;
        cursor: pointer;
        transition: all 0.3s ease;
      }

      .blog-filter-btn.active {
        background: #008ACE;
        border-color: #008ACE;
        color: white;
      }

      .blog-filter-btn:hover {
        background: #008ACE;
        border-color: #008ACE;
        color: white;
      }

      .blog-search {
        display: flex;
        align-items: center;
        gap: 10px;
      }

      .blog-search-input {
        padding: 10px 16px;
        border: 1px solid #e9ecef;
        border-radius: 20px;
        font-size: 14px;
        outline: none;
        width: 200px;
        filter: opacity(0.5);
        opacity: 0.5;
      }

      .blog-search-input:focus {
        border-color: #008ACE;
      }

      .blog-search-btn {
        background: #008ACE;
        border: none;
        color: white;
        width: 40px;
        height: 40px;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        cursor: pointer;
        transition: background 0.3s ease;
      }

      .blog-search-btn:hover {
        background: #0076b3;
      }

      .blog-posts-grid {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 30px;
        margin-bottom: 60px;
      }

      .blog-post-card {
        border-radius: 12px;
        overflow: hidden;
        transition: all 0.3s ease;
        position: relative;
      }



      .blog-post-image {
        position: relative;
        overflow: hidden;
        height: 200px;
      }

      .blog-post-image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform 0.3s ease;
      }

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

      .blog-post-overlay {
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: rgba(0, 139, 206, 0.8);
        display: flex;
        align-items: center;
        justify-content: center;
        opacity: 0;
        transition: opacity 0.3s ease;
      }

      .blog-post-card:hover .blog-post-overlay {
        opacity: 1;
      }

      .blog-post-read-more {
        background: white;
        color: #008bce;
        width: 60px;
        height: 60px;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        text-decoration: none;
        transition: transform 0.3s ease;
      }

      .blog-post-read-more:hover {
        transform: scale(1.1);
      }

      .blog-post-content {
        padding-top: 10px;
      }

      .blog-post-meta {
        display: flex;
        justify-content: space-between;
        align-items: center;
        margin-bottom: 12px;
        font-size: 12px;
      }

      .blog-post-category {
        color: #666;
        font-weight: 500;
      }

      .blog-post-date {
        color: #999;
        font-weight: 400;
      }

      .blog-post-title {
        font-size: 22px;
        font-weight: 700;
        color: #001B48;
        line-height: 1.4;
        margin-bottom: 12px;
      }

      .blog-post-excerpt {
        color: #666;
        font-size: 14px;
        line-height: 1.5;
        margin-bottom: 16px;
      }

      .blog-post-footer {
        display: flex;
        align-items: center;
      }

      .blog-post-link {
        color: #008ACE;
        text-decoration: none;
        font-weight: 500;
        font-size: 14px;
        display: flex;
        align-items: center;
        gap: 6px;
        transition: color 0.3s ease;
      }

      .blog-post-link:hover {
        color: #0076b3;
      }

      .blog-post-link .material-icons {
        font-size: 16px;
      }

      .blog-post-reading-time {
        display: flex;
        align-items: center;
        gap: 6px;
        color: #999;
        font-size: 14px;
      }

      .blog-post-reading-time .material-icons {
        font-size: 16px;
      }

      .blog-empty-state {
        grid-column: 1 / -1;
        text-align: center;
        padding: 80px 20px;
        color: #666;
      }

      .blog-empty-state .material-icons {
        font-size: 64px;
        color: #ddd;
        margin-bottom: 20px;
      }

      .blog-empty-state h3 {
        font-size: 24px;
        margin-bottom: 12px;
        color: #001B48;
      }

      .blog-load-more {
        text-align: center;
      }

      .blog-load-more-btn {
        background: transparent;
        border: 2px solid #008bce;
        color: #008bce;
        padding: 16px 32px;
        border-radius: 50px;
        font-weight: 600;
        cursor: pointer;
        transition: all 0.3s ease;
        display: inline-flex;
        align-items: center;
        gap: 10px;
      }

      .blog-load-more-btn:hover {
        background: #008bce;
        color: white;
      }

      /* Additional Blog Section (aytokblogsayfasi3) */
      .aytokblogsayfasi3 {
        padding: 80px 0;
        background: #ffffff;
      }

      .aytokblogsayfasi3-container {
        max-width: 1400px;
        margin: 0 auto;
        padding: 0 40px;
        display: grid;
        grid-template-columns: 0.8fr 1.2fr;
        gap: 80px;
        align-items: flex-start;
      }

      .aytokblogsayfasi3-left {
        position: relative;
      }

      .popular-badge {
        background: #008ACE;
        color: white;
        padding: 8px 16px;
        border-radius: 20px;
        font-size: 14px;
        font-weight: 600;
        display: inline-block;
        margin-bottom: 24px;
      }

      .aytokblogsayfasi3-title {
        font-size: 46px;
        font-weight: 1;
        color: #008ACE;
        line-height: 1.2;
        margin-bottom: 20px;
      }

      .aytokblogsayfasi3-description {
        font-size: 16px;
        filter: opacity(0.8);
        opacity: 0.8;
        color: #14245A;
        line-height: 1.6;
        margin-bottom: 40px;
      }

      .aytokblogsayfasi3-drawing {
        max-width: 100%;
      }

      .aytokblogsayfasi3-drawing img {
        width: 100%;
        height: auto;
        object-fit: contain;
      }

      .aytokblogsayfasi3-right {
        display: flex;
        flex-direction: column;
        gap: 24px;
      }

      .aytokblogsayfasi3-card {
        display: flex;
        gap: 16px;

        border-radius: 12px;
        padding: 16px;
        transition: all 0.3s ease;
      }

      .aytokblogsayfasi3-card-image {
        flex-shrink: 0;
        width: 396px;
      height: 245px;

        border-radius: 8px;
        overflow: hidden;
      }

      .aytokblogsayfasi3-card-image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
      }

      .aytokblogsayfasi3-card-content {
        flex: 1;
        display: flex;
        flex-direction: column;
      }

      .aytokblogsayfasi3-card-category {
        background: #f0f0f0;
        color: #666;
        padding: 6px 12px;
        border-radius: 12px;
        font-size: 13px;
        font-weight: 500;
        display: inline-block;
        width: fit-content;
        margin-bottom: 12px;
      }

      .aytokblogsayfasi3-card-title {
        font-size: 16px;
        font-weight: 700;
        color: #001B48;
        line-height: 1.3;
        margin-bottom: 8px;
      }

      .aytokblogsayfasi3-card-excerpt {
        font-size: 13px;
        color: #666;
        line-height: 1.4;
        margin-bottom: 22px;
      }

      .aytokblogsayfasi3-card-link {
        color: #008ACE;
        text-decoration: none;
        font-weight: 500;
        font-size: 12px;
        display: flex;
        align-items: center;
        gap: 4px;
        transition: color 0.3s ease;
      }

      .aytokblogsayfasi3-card-link:hover {
        color: #0076b3;
      }

      .aytokblogsayfasi3-card-link .material-icons {
        font-size: 14px;
      }

      /* Responsive Design */
      @media (max-width: 1024px) {
        .blog-hero-container {
          max-width: 100%;
          height: auto;
          min-height: 400px;
          padding: 40px 20px;
        }

        .blog-hero-image {
          width: 100%;
        }

        .blog-hero-title {
          font-size: 36px;
        }

        .blog-hero-description {
          font-size: 15px;
        }

        .aytokblogsayfasi2 {
          margin: 0 20px;
          padding: 60px 0;
        }

        .blog-posts-container {
          padding: 0 15px;
        }

        .blog-posts-title {
          font-size: 32px;
        }

        .blog-posts-subtitle {
          font-size: 15px;
        }

        .blog-filters-section {
          flex-direction: column;
          margin: 30px 0;
          gap: 15px;
        }

        .blog-posts-grid {
          grid-template-columns: repeat(2, 1fr);
          gap: 20px;
        }

        .aytokblogsayfasi3 {
          padding: 60px 0;
        }

        .aytokblogsayfasi3-container {
          padding: 0 20px;
          gap: 50px;
          grid-template-columns: 0.9fr 1.1fr;
        }

        .aytokblogsayfasi3-title {
          font-size: 38px;
        }

        .aytokblogsayfasi3-description {
          font-size: 15px;
        }

        .aytokblogsayfasi3-card-image {
          width: 300px;
          height: 180px;
        }

        .aytokblogsayfasi3-card-title {
          font-size: 15px;
        }

        .aytokblogsayfasi3-card-excerpt {
          font-size: 12px;
        }
      }

      @media (max-width: 768px) {
        .blog-hero-container {
          grid-template-columns: 1fr;
          gap: 30px;
          height: auto;
          min-height: 350px;
          padding: 30px 15px;
        }

        .blog-hero-title {
          font-size: 28px;
          margin-bottom: 16px;
        }

        .blog-hero-description {
          font-size: 14px;
          margin-bottom: 24px;
        }

        .blog-hero-content {
          padding: 15px 20px;
        }

        .blog-hero-badges {
          margin-bottom: 16px;
        }

        .blog-badge-new,
        .blog-badge-time {
          padding: 6px 12px;
          font-size: 12px;
        }

        .blog-badge-new::after {
          width: 24px;
          right: -8px;
        }

        .blog-hero-button {
          padding: 10px 20px;
          font-size: 14px;
        }

        .aytokblogsayfasi2 {
          margin: 0 15px;
          padding: 50px 0;
        }

        .blog-posts-container {
          padding: 0 10px;
        }

        .blog-posts-title {
          font-size: 28px;
          margin-bottom: 12px;
        }

        .blog-posts-subtitle {
          font-size: 14px;
          margin-bottom: 30px;
        }

        .blog-filters-section {
          flex-direction: column;
          align-items: center;
          gap: 15px;
          margin: 25px 0;
        }

        .blog-filters {
          justify-content: center;
          flex-wrap: wrap;
          gap: 8px;
        }

        .blog-filter-btn {
          padding: 6px 14px;
          font-size: 13px;
        }

        .blog-search {
          width: 100%;
          justify-content: center;
        }

        .blog-search-input {
          width: 220px;
          padding: 8px 14px;
          font-size: 13px;
        }

        .blog-search-btn {
          width: 36px;
          height: 36px;
        }

        .blog-posts-grid {
          grid-template-columns: 1fr 1fr;
          gap: 15px;
          margin-bottom: 40px;
        }

        .blog-post-card {
          border-radius: 10px;
        }

        .blog-post-image {
          height: 140px;
        }

        .blog-post-content {
          padding: 15px;
        }

        .blog-post-title {
          font-size: 16px;
          margin-bottom: 8px;
        }

        .blog-post-excerpt {
          font-size: 12px;
          margin-bottom: 12px;
        }

        .blog-post-meta {
          font-size: 10px;
          margin-bottom: 8px;
        }

        .blog-post-link {
          font-size: 12px;
        }

        .aytokblogsayfasi3 {
          padding: 50px 0;
        }

        .aytokblogsayfasi3-container {
          grid-template-columns: 1fr;
          padding: 0 15px;
          gap: 40px;
        }

        .aytokblogsayfasi3-title {
          font-size: 32px;
          text-align: center;
        }

        .aytokblogsayfasi3-description {
          font-size: 14px;
          text-align: center;
        }

        .popular-badge {
          display: block;
          text-align: center;
          width: fit-content;
          margin: 0 auto 24px;
        }

        .aytokblogsayfasi3-drawing {
          text-align: center;
          margin-bottom: 40px;
        }

        .aytokblogsayfasi3-card {
          flex-direction: row;
          gap: 16px;
          padding: 16px;
        }

        .aytokblogsayfasi3-card-image {
          width: 200px;
          height: 130px;
        }

        .aytokblogsayfasi3-card-title {
          font-size: 16px;
        }

        .aytokblogsayfasi3-card-excerpt {
          font-size: 13px;
        }

        .aytokblogsayfasi3-card-category {
          font-size: 12px;
          padding: 5px 10px;
        }
      }

      @media (max-width: 480px) {
        .blog-hero-container {
          padding: 20px 10px;
          height: auto;
          min-height: 300px;
        }

        .blog-hero-image {
          width: 100%;
          height: 200px;
        }

        .blog-hero-title {
          font-size: 24px;
          line-height: 1.3;
        }

        .blog-hero-description {
          font-size: 13px;
        }

        .blog-hero-content {
          padding: 10px 15px;
        }

        .blog-badge-new::after {
          width: 20px;
          right: -6px;
        }

        .aytokblogsayfasi2 {
          margin: 0 10px;
          padding: 40px 0;
        }

        .blog-posts-container {
          padding: 0 8px;
        }

        .blog-posts-title {
          font-size: 24px;
          margin-bottom: 10px;
        }

        .blog-posts-subtitle {
          font-size: 13px;
          margin-bottom: 25px;
        }

        .blog-filters-section {
          margin: 20px 0;
          gap: 12px;
        }

        .blog-filters {
          justify-content: flex-start;
          gap: 6px;
        }

        .blog-filter-btn {
          padding: 5px 10px;
          font-size: 11px;
        }

        .blog-search-input {
          width: 180px;
          padding: 6px 12px;
          font-size: 12px;
        }

        .blog-search-btn {
          width: 32px;
          height: 32px;
        }

        .blog-posts-grid {
          grid-template-columns: 1fr;
          gap: 12px;
          margin-bottom: 30px;
        }

        .blog-post-card {
          border-radius: 8px;
        }

        .blog-post-image {
          height: 160px;
        }

        .blog-post-content {
          padding: 12px;
        }

        .blog-post-title {
          font-size: 15px;
          margin-bottom: 6px;
        }

        .blog-post-excerpt {
          font-size: 11px;
          margin-bottom: 10px;
          line-height: 1.4;
        }

        .blog-post-meta {
          font-size: 9px;
          margin-bottom: 6px;
        }

        .blog-post-link {
          font-size: 11px;
        }

        .blog-post-link .material-icons {
          font-size: 14px;
        }

        .aytokblogsayfasi3 {
          padding: 40px 0;
        }

        .aytokblogsayfasi3-container {
          padding: 0 10px;
          gap: 30px;
        }

        .aytokblogsayfasi3-title {
          font-size: 24px;
          text-align: center;
        }

        .aytokblogsayfasi3-description {
          font-size: 13px;
          margin-bottom: 30px;
          text-align: center;
        }

        .popular-badge {
          padding: 6px 12px;
          font-size: 12px;
          margin: 0 auto 16px;
        }

        .aytokblogsayfasi3-drawing {
          text-align: center;
          margin-bottom: 30px;
        }

        .aytokblogsayfasi3-right {
          gap: 16px;
        }

        .aytokblogsayfasi3-card {
          flex-direction: column;
          padding: 12px;
          gap: 12px;
        }

        .aytokblogsayfasi3-card-image {
          width: 100%;
          height: 160px;
        }

        .aytokblogsayfasi3-card-title {
          font-size: 15px;
        }

        .aytokblogsayfasi3-card-excerpt {
          font-size: 12px;
        }

        .aytokblogsayfasi3-card-category {
          font-size: 11px;
          padding: 4px 8px;
        }

        .aytokblogsayfasi3-card-link {
          font-size: 12px;
        }
      }

/* === BLOG DETAY AYTOK1 STİLLERİ === */
.blog-detay-aytok1-section {
    background: #a6b3b540;
    height: auto;
    padding: 0 0 80px 0;
    margin: 0 120px;
    border-radius: 17px;
    overflow: hidden;
}

.blog-detay-aytok1-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Hero Section */
.blog-detay-aytok1-hero {
    text-align: center;
    padding: 80px 0 60px 0;
}

.blog-detay-aytok1-hero-content {
    margin: 0 auto;
}

.blog-detay-aytok1-title {
    font-size: clamp(1.5rem, 4vw, 3rem);
    font-weight: 700;
    color: #001d55;
    margin-bottom: 20px;
    line-height: 1.2;
}

.blog-detay-aytok1-description {
    font-size: clamp(0.9rem, 2vw, 1.1rem);
    color: #666;
    margin-bottom: 30px;
    line-height: 1.6;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.blog-detay-aytok1-meta {
    display: flex;
    justify-content: center;
    gap: clamp(15px, 3vw, 30px);
    flex-wrap: wrap;
}

.blog-detay-aytok1-meta span {
    font-size: clamp(0.8rem, 1.5vw, 0.9rem);
    color: #888;
}

/* Main Image */
.blog-detay-aytok1-image {
    margin: 0 0 80px 0;
    border-radius: 7px;
    overflow: visible;
    box-shadow: 0 15px 50px rgba(0, 29, 85, 0.1);
    position: relative;
}

.blog-detay-aytok1-image::after {
    content: '';
    position: absolute;
    bottom: -38px;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    height: 2px;
    background: #7EABB4;
    z-index: 10;
}

.blog-detay-aytok1-image img {
    width: 100%;
    max-width: 1250px;
    height: auto;
    aspect-ratio: 1250/566;
    object-fit: cover;
    display: block;
}

/* Content Grid Layout */
.blog-detay-aytok1-content-grid {
    display: grid;
    grid-template-columns: 30% 70%;
    gap: 40px;
}

/* Left Column */
.blog-detay-aytok1-left-column {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

/* Left Sidebar */
.blog-detay-aytok1-left-sidebar {
    background: #001b48;
    border-radius: 20px;
    padding: 30px;
    box-shadow: 0 20px 40px rgba(30, 58, 138, 0.3);
    position: relative;
    align-self: start;
    height: fit-content;
    color: white;
    z-index: 100;
}

/* White Space Area */
.blog-detay-aytok1-white-space {
    background: white;
    position: relative;
    top: 8%;
    margin-left: -370px;
    padding-left: 200px;
    width: calc(100% + 219px);
    flex-grow: 1;
}

/* Main Filter Content Layout */
.blog-detay-filtre-main-content {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

/* Sol taraf - Metin İçeriği */
.blog-detay-filtre-left-content {
    flex: 1;
    padding-top: 50px;
}

.blog-detay-filtre-icon {
    background: #008ACE;
    padding: 12px;
    border-radius: 1px;
    width: fit-content;
    position: absolute;
    top: 0;
    left: 30px;
}

.blog-detay-filtre-left-content h3 {
    font-size: clamp(1rem, 2.5vw, 1.4rem);
    font-weight: 700;
    color: white;
    margin: 0 0 15px 0;
    line-height: 1.2;
}

.blog-detay-filtre-description {
    color: #1250b6;
    width: 100%;
    font-size: clamp(0.8rem, 1.8vw, 0.9rem);
    line-height: 1.8;
    margin: 0;
    padding-right: 20px;
}

/* Sağ taraf - Telefon Mockup */
.blog-detay-filtre-right-content {
    flex: 0 0 180px;
    max-width: 180px;
    display: flex;
    justify-content: center;
}

/* Phone Mockup */
.blog-detay-filtre-phone-mockup {
    display: flex;
    justify-content: center;
    width: 100%;
}

.blog-detay-filtre-phone-screen {
    width: 120%;
    height: 160px;
    border-radius: 20px;
    padding: 8px;
    position: relative;
    overflow: hidden;
    margin-top: 30px;
}

.blog-detay-filtre-phone-screen lottie-player {
    display: block;
    width: 100%;
    height: 100%;
    border-radius: inherit;
    -webkit-mask-image: -webkit-radial-gradient(white, black);
    mask-image: radial-gradient(white, black);
}

/* Text Content */
.blog-detay-aytok1-text-content {
    border-radius: 15px;
    padding: 40px;
    position: relative;
}



.blog-detay-aytok1-text-content p {
    font-size: clamp(0.85rem, 2vw, 1rem);
    color: #444;
    line-height: 1.7;
    margin-bottom: 0;
    text-align: justify;
    word-wrap: break-word;
    overflow-wrap: break-word;
}

.blog-detay-aytok1-text-content h3 {
    font-size: clamp(1rem, 2.5vw, 1.4rem);
    font-weight: 700;
    color: #001d55;
    margin: 40px 0 20px 0;
    line-height: 1.3;
    scroll-margin-top: 120px;
}

.blog-detay-aytok1-text-content h3:first-child {
    margin-top: 0;
}

/* Blog içerik görseli */
.blog-detay-image-container {
    margin: clamp(20px, 5vw, 40px) 0;
    text-align: center;
}

.blog-detay-content-image {
    max-width: 100%;
    height: auto;
    border-radius: clamp(6px, 2vw, 12px);
    box-shadow: 0 10px 30px rgba(0, 29, 85, 0.15);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.blog-detay-content-image:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 40px rgba(0, 29, 85, 0.2);
}

/* Tags Section */
.blog-detay-tags-section {
    margin: clamp(20px, 4vw, 30px) 0 0 0;
    padding: 0;
    position: relative;
    z-index: 50;
}

.blog-detay-tags-container {
    display: flex;
    flex-wrap: wrap;
    gap: clamp(8px, 2vw, 12px);
    align-items: center;
    justify-content: flex-start;
    line-height: 1.5;
}

.blog-detay-tag {
    padding: clamp(7px, 1vw, 6px) clamp(16px, 4vw, 24px);
    border-radius: clamp(20px, 5vw, 30px);
    font-size: clamp(0.85rem, 2vw, 1rem);
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
    user-select: none;
}

.blog-detay-tag-active {
    background: #5B9BD5;
    color: white;
    box-shadow: 0 4px 12px rgba(91, 155, 213, 0.3);
}

.blog-detay-tag:not(.blog-detay-tag-active) {
    color: #666666ac;
    border: 1px solid #e0e0e0b5;
}

/* === RESPONSIVE DESIGN === */

/* Very Large Screens - Beyaz kısmı kaldır */
@media (min-width: 2100px) {


    .blog-detay-aytok1-text-content {
        background: transparent;
    }
}

@media (min-width: 2120px) {
    .blog-detay-aytok1-white-space {
        display: none;
    }
}

/* Extra Large Screens */
@media (max-width: 1400px) {
    .blog-detay-aytok1-section {
        margin: 0 clamp(20px, 8vw, 120px);
    }

    .blog-detay-aytok1-content-grid {
        grid-template-columns: 32% 68%;
        gap: clamp(25px, 4vw, 40px);
    }
}

/* Large Desktops */
@media (max-width: 1200px) {
    .blog-detay-aytok1-section {
        margin: 0 clamp(20px, 6vw, 80px);
    }

    .blog-detay-aytok1-content-grid {
        grid-template-columns: 35% 65%;
        gap: clamp(20px, 3vw, 35px);
    }

    .blog-detay-aytok1-white-space {
        margin-left: -280px;
        padding-left: 160px;
        width: calc(100% + 180px);
    }
}

/* Medium Screens and Tablets */
@media (max-width: 1024px) {
    .blog-detay-aytok1-section {
        margin: 0 clamp(10px, 4vw, 40px);
    }

    .blog-detay-aytok1-content-grid {
        display: flex;
        flex-direction: column;
        gap: clamp(20px, 4vw, 30px);
    }

    .blog-detay-aytok1-left-column {
        order: 2;
    }

    .blog-detay-aytok1-text-content {
        order: 1;
        padding: clamp(20px, 4vw, 35px);
    }



    .blog-detay-aytok1-left-sidebar {
        position: static;
        padding: clamp(20px, 4vw, 30px);
        border-radius: clamp(12px, 2vw, 20px);
    }

    .blog-detay-aytok1-white-space {
        display: none;
    }

    .blog-detay-filtre-main-content {
        flex-direction: row;
        gap: clamp(15px, 3vw, 25px);
    }

    .blog-detay-filtre-left-content {
        padding-top: clamp(25px, 4vw, 45px);
    }

    .blog-detay-filtre-icon {
        padding: clamp(10px, 2vw, 12px);
        left: clamp(20px, 5vw, 70px); top: calc(100% - 65px);
    }

    .blog-detay-filtre-description {
        width: 100%;
        font-size: clamp(0.85rem, 2vw, 0.95rem);
    }

    .blog-detay-filtre-phone-screen {
        width: clamp(80px, 15vw, 120px);
        height: clamp(120px, 20vw, 160px);
        margin-top: clamp(15px, 3vw, 25px);
    }
}

/* Small Tablets and Large Mobile */
@media (max-width: 768px) {
    .blog-detay-aytok1-section {
        margin: 0 clamp(5px, 2vw, 15px);
        border-radius: clamp(8px, 2vw, 12px);
        padding: 0 0 clamp(40px, 8vw, 60px) 0;
    }

    .blog-detay-aytok1-container {
        padding: 0 clamp(5px, 2vw, 10px);
        max-width: 100vw;
        overflow-x: hidden;
    }

    .blog-detay-aytok1-hero {
        padding: clamp(30px, 8vw, 50px) 0 clamp(25px, 6vw, 40px) 0;
    }

    .blog-detay-aytok1-image {
        margin-bottom: clamp(25px, 6vw, 40px);
        border-radius: clamp(8px, 2vw, 12px);
    }

    .blog-detay-aytok1-image::after {
        bottom: clamp(-20px, -4vw, -30px);
    }

    .blog-detay-aytok1-meta {
        flex-direction: column;
        align-items: center;
        gap: clamp(8px, 2vw, 15px);
    }

    .blog-detay-aytok1-left-sidebar {
        padding: clamp(35px, 8vw, 55px) clamp(15px, 3vw, 25px);
        border-radius: clamp(10px, 2vw, 15px);
    }

    .blog-detay-filtre-main-content {
        display: flex;
        flex-direction: row;
        gap: clamp(10px, 3vw, 18px);
        align-items: flex-start;
    }

    .blog-detay-filtre-left-content {
        padding-top: clamp(10px, 3vw, 20px);
        flex: 1;
    }

    .blog-detay-filtre-icon {
        padding: clamp(10px, 2vw, 12px);
        left: clamp(15px, 3vw, 25px);
        top: calc(100% - 55px);
    }

    .blog-detay-filtre-description {
        margin-bottom: clamp(15px, 4vw, 25px);
        line-height: 1.6;
        text-align: left;
    }

    .blog-detay-filtre-phone-screen {
      width: clamp(60px, 72vw, 180px);
      height: clamp(100px, 68vw, 140px);
      margin-top: clamp(5px, 2vw, 15px);
    }

    .blog-detay-aytok1-text-content {
        padding: clamp(15px, 4vw, 25px);
        border-radius: clamp(8px, 2vw, 12px);
    }


    .blog-detay-aytok1-text-content p {
        text-align: left;
        max-width: 100%;
    }

 

    /* Tags Section Mobile */
    .blog-detay-tags-section {
        margin: clamp(20px, 5vw, 30px) 0;
    }

    .blog-detay-tags-container {
        gap: clamp(8px, 2vw, 12px);
        justify-content: flex-start;
        align-items: flex-start;
    }

    .blog-detay-tag {
        padding: clamp(8px, 2vw, 12px) clamp(16px, 3vw, 20px);
        font-size: clamp(0.8rem, 2vw, 0.9rem);
        border-radius: clamp(18px, 4vw, 25px);
        flex-shrink: 0;
        min-width: fit-content;
    }
}

@media (max-width: 375px) and (min-width: 320px) {
    .blog-detay-filtre-icon {
        top: 91.6% !important;
    }
}
/* Mobile Phones */
@media (max-width: 480px) {
    .blog-detay-aytok1-section {
        margin: 0 clamp(2px, 1vw, 8px);
        border-radius: clamp(6px, 2vw, 10px);
        padding: 0 0 clamp(30px, 8vw, 50px) 0;
    }

    .blog-detay-aytok1-container {
        padding: 0 clamp(3px, 1vw, 8px);
    }

    .blog-detay-aytok1-hero {
        padding: clamp(25px, 8vw, 40px) 0 clamp(20px, 6vw, 30px) 0;
    }

    .blog-detay-aytok1-content-grid {
        gap: clamp(15px, 4vw, 25px);
        margin-bottom: clamp(25px, 6vw, 40px);
    }

    .blog-detay-aytok1-left-sidebar {
        padding: clamp(30px, 16vw, 50px) clamp(10px, 3vw, 20px);
        border-radius: clamp(8px, 2vw, 12px);
            }

    .blog-detay-filtre-main-content {
        gap: clamp(8px, 2vw, 15px);
    }

    .blog-detay-filtre-left-content {
        padding-top: clamp(8px, 2vw, 15px);
    }

    .blog-detay-filtre-icon {
        padding: clamp(8px, 2vw, 12px);
        top: calc(98% - 50px);
        left: 12px;
    }

    .blog-detay-filtre-phone-screen {
        width: clamp(90px, 28vw, 140px);
        height: clamp(140px, 40vw, 220px);
        margin-top: clamp(10px, 4vw, 20px);
    }

    .blog-detay-aytok1-text-content {
        padding: clamp(12px, 4vw, 20px);
        border-radius: clamp(6px, 2vw, 10px);
    }



    /* Tags Section 480px */
    .blog-detay-tags-section {
        margin: clamp(15px, 4vw, 25px) 0;
    }

    .blog-detay-tags-container {
        gap: clamp(6px, 2vw, 10px);
        row-gap: clamp(8px, 2vw, 12px);
    }

    .blog-detay-tag {
        padding: clamp(6px, 1.5vw, 10px) clamp(12px, 3vw, 16px);
        font-size: clamp(0.75rem, 1.8vw, 0.85rem);
        border-radius: clamp(15px, 3vw, 20px);
        flex-shrink: 0;
    }
}

/* Very Small Mobile Phones */
@media (max-width: 320px) {
    .blog-detay-aytok1-section {
        margin: 0 2px;
        border-radius: 6px;
        padding: 0 0 30px 0;
    }

    .blog-detay-aytok1-container {
        padding: 0 3px;
    }

    .blog-detay-aytok1-hero {
        padding: 20px 0 15px 0;
    }

    .blog-detay-aytok1-left-sidebar {
        padding: 25px 8px;
        border-radius: 8px;
    }

    .blog-detay-filtre-main-content {
        gap: 6px;
    }

    .blog-detay-filtre-left-content {
        padding-top: 5px;
    }

    .blog-detay-filtre-icon {
        padding: 8px;
        top: calc(100% - 45px);
        left: 10px;
    }

    .blog-detay-filtre-phone-screen {
        width: 85px;
        height: 130px;
        margin-top: 6px;
    }

    .blog-detay-aytok1-text-content {
        padding: 10px;
        border-radius: 6px;
    }


    /* Tags Section 320px */
    .blog-detay-tags-section {
        margin: 15px 0;
    }

    .blog-detay-tags-container {
        gap: 6px;
        row-gap: 10px;
        justify-content: flex-start;
    }

    .blog-detay-tag {
        padding: 6px 12px;
        font-size: 0.7rem;
        border-radius: 14px;
        flex-shrink: 0;
        white-space: nowrap;
    }
}

/* Landscape orientation optimization */
@media (max-height: 500px) and (orientation: landscape) {
    .blog-detay-aytok1-hero {
        padding: 20px 0 15px 0;
    }

    .blog-detay-filtre-phone-screen {
        height: clamp(60px, 12vh, 100px);
    }
}

/* High DPI displays */
@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
    .blog-detay-aytok1-image img,
    .blog-detay-content-image {
        image-rendering: -webkit-optimize-contrast;
        image-rendering: crisp-edges;
    }
}

/* Touch device optimizations */
@media (hover: none) and (pointer: coarse) {
    .blog-detay-content-image:hover {
        transform: none;
        box-shadow: 0 10px 30px rgba(0, 29, 85, 0.15);
    }

    .blog-detay-filtre-icon {
        padding: clamp(10px, 3vw, 15px);
    }
}

/* Dark mode support */
@media (prefers-color-scheme: dark) {
    .blog-detay-aytok1-section {
        background: rgba(166, 179, 181, 0.2);
    }

    .blog-detay-aytok1-text-content p {
        color: #666;
    }
}

/* Reduced motion preference */
@media (prefers-reduced-motion: reduce) {
    .blog-detay-aytok1-section *,
    .blog-detay-content-image {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* Print styles */
@media print {
    .blog-detay-aytok1-section {
        margin: 0;
        background: white;
        box-shadow: none;
        border-radius: 0;
    }

    .blog-detay-filtre-phone-mockup {
        display: none;
    }

    .blog-detay-aytok1-meta {
        flex-direction: row;
        justify-content: space-between;
    }
}

/* Accessibility improvements */
@media (prefers-contrast: high) {
    .blog-detay-aytok1-title {
        color: #000;
    }

    .blog-detay-aytok1-text-content p {
        color: #000;
    }

    .blog-detay-filtre-description {
        color: #000;
    }
}

/* Modern browser optimizations */
.blog-detay-aytok1-container {
    contain: layout style;
}

.contact-page-container {
    padding: 40px 20px;
    max-width: 1400px;
    margin: 0 auto;
}

.contact-card {
    position: relative;
    width: 100%;
    aspect-ratio: 1259 / 725;
    background-color: #F1F5F5; /* Match image background */
    background-image: url('/assets/img/world.svg');
    background-size: 90%;
    background-position: center;
    background-repeat: no-repeat;
    border-radius: 20px 20px 0 0;
    overflow: hidden;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    margin-bottom: 0;
}

.info-block {
    position: absolute;
}

.hello-block {
    bottom: 4%;
    left: 6%;
}
.hello-block .merhaba-title {
    color: #02B7D9;
    font-size: 3.5rem;
    font-weight: 400;
    margin: 0 0 10px 0;
}
.hello-block p {
    color: #808080;
    font-size: 0.9rem;
    line-height: 1.4;
    max-width: 250px;
}
.hello-block-mobile {
    display: none;
    position: relative;
    bottom: auto;
    left: auto;
    padding-bottom: 20px;
}

.country-block {
    bottom: 4%;
    left: 40%;
}

.form-card-wrapper .country-block {
    position: relative;
    left: 5%;
    bottom: auto;
    top: -13%;
    margin-bottom: 0;
}

.country-block h3 {
    color: #000000;
    font-size: 2rem;
    font-weight: 600;
    margin: 0 0 15px 0;
}

.country-title {
    color: #001B48 !important;
    font-size: 2.5rem !important;
    font-weight: 10;
    margin: 0 0 15px 0;
}
.country-block p {
    color: #555555;
    font-size: 0.95rem;
}

.country-contact-info {
    color: #555555;
    font-size: 1rem;
    line-height: 1.6;
    margin: 0;
}

.map-point {
    position: absolute;
    background: #00A9E0;
    border-radius: 50%;
    transition: all 0.3s ease;
    cursor: pointer;
}

.dot {
    width: 10px;
    height: 10px;
}

.dot:hover {
    transform: scale(1.2);
    background: #0095c7;
}
.special-dot {
    width: 18px;
    height: 18px;
    background: transparent;
    border: 2px solid #00A9E0;
}

/* Aktif dot stili */
.dot.active {
    background: #7EABB4;
    z-index: 10;
}

.dot.active::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 18px;
    height: 18px;
    border: 3px solid #008ACE;
    border-radius: 50%;
    background: transparent;
    transform: translate(-50%, -50%);
}

/* Koordinat noktaları - % değerleri responsive için */
#dot-1 { top: 62.2%; left: 37.3%; }   /* Brezilya */
#dot-2 { top: 75.1%; left: 32.4%; }   /* Arjantin */
#dot-3 { top: 48.6%; left: 26.1%; }   /* ABD */
#dot-4 { top: 33.2%; left: 49.0%; }   /* İspanya */
#dot-5 { top: 38.6%; left: 57.7%; }   /* Türkiye */
#dot-6 { top: 49.0%; left: 68.2%; }   /* Rusya */
#dot-7 { top: 30.8%; left: 73.9%; }   /* Çin */
#dot-8 { top: 69.5%; left: 83.3%; }   /* Avustralya */


.bottom-section {
    display: flex;
    gap: 30px;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

.left-section {
    width: 25%;
    display: flex;
    margin-top: 3%;
    margin-left: 3%;
    flex-direction: column;
}

.iletisim-filtercard {
    width: 120%;
    background: #001B48;
    color: white;
    border-radius: 7px;
    padding: 30px;
    position: relative;
    animation: slideInLeft 1s ease-out 0.3s both;
    margin-bottom: 20px;
}

.form-divider {
    border: none;
    height: 1px;
    background-color: #7EABB4;
    margin-top: -62px;
    margin-bottom: 25px;
}

.iletisim-filtercard-icon {
    position: absolute;
    top: 0;
    left: 0;
    width: 50px;
    height: 50px;
    background: #008ACE;
    display: flex;
    align-items: center;
    left: 30px;
    justify-content: center;
}

.phone-icon {
    position: absolute;
    top: 65%;
    right: 10px;
    transform: translateY(-50%);
    width: 220px;
    height: 280px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}



.phone-icon lottie-player {
    border-radius: 15px;
    filter: drop-shadow(0 4px 8px rgba(91, 181, 227, 0.3));
}

.iletisim-filtercard-content {
    margin-top: 70px;
    margin-right: 240px;
}

.iletisim-filtercard h3 {
    font-size: 2.2rem;
    font-weight: bold;
    line-height: 1.2;
    margin-bottom: 15px;
    color: white;
}

.iletisim-filtercard p {
    color: #008ACE;
    font-size: 0.9rem;
    filter: opacity(0.8);
    line-height: 2.0;
    margin-bottom: 15px;
    opacity: 0.8;
}

.social-section {
    width: 100%;
    animation: slideInLeft 1s ease-out 0.5s both;
}

.socials {
    display: flex;
    align-items: center;
    gap: 15px;
    padding-left: 0;
}

.socials span {
    color: #456CAC;
    font-size: 0.95rem;
    margin-right: 15px;
    opacity: 0.9;
}

.socials a {
    width: 35px;
    height: 35px;
    background: #008ace;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
    margin-right: 6px;
    box-shadow: 0 4px 15px rgba(91, 181, 227, 0.3);
}

.socials a:hover {
    transform: translateY(-3px) scale(1.1);
    box-shadow: 0 8px 25px rgba(91, 181, 227, 0.4);
}

.form-card-wrapper {
    width: 56%;
    background-color: #F1F5F5;
    padding: 30px;
    position: relative;
    left: 11%;
    border-radius: 0 0 20px 20px;
    margin-top: 0;
}

@keyframes slideInLeft {
    0% {
        opacity: 0;
        transform: translateX(-50px);
    }
    100% {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInRight {
    0% {
        opacity: 0;
        transform: translateX(50px);
    }
    100% {
        opacity: 1;
        transform: translateX(0);
    }
}

.form-card {
    background-color: #0000000A;
    padding: 30px;
    border-radius: 12px;
}
.form-card h3 { font-size: 2rem; font-weight: bold; color: #212529; margin-bottom: 10px; }
.form-card > p { color: #6c757d; margin-bottom: 30px; }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.form-field { width: 90%; padding: 14px; border: 1px solid #dee2e6; border-radius: 8px; background: white; }
.form-field::placeholder { color: #adb5bd; }
.form-upload { display: flex; align-items: center; background: #f2f2f2; padding: 12px; border-radius: 8px; color: #6c757d; }
.form-agree { display: flex; align-items: center; font-size: 0.9rem; color: #6c757d; }
.form-agree input { margin-right: 10px; }
.form-agree a { color: #00A9E0; text-decoration: none; }
.submit-btn { background-color: #00A9E0; color: white; border: none; padding: 15px; border-radius: 8px; cursor: pointer; width: 100%; font-size: 1rem; font-weight: bold; grid-column: 1 / -1; }

textarea.form-field {
    width: 96%;
}

.headquarters-section {
    display: flex;
    padding-top: 50px;
    padding-bottom: 50px;
}

.headquarters-spacer {
    width: 44%;
}

.headquarters-content {
    width: 50%;
    text-align: left;
}

.headquarters-title {
    font-size: 2.2rem;
    color: #001B48;
    font-weight: 600;
    margin-bottom: 20px;
}

.headquarters-divider {
    border: 0;
    border-top: 1px solid #7EABB4;
    width: 100%;
    margin: 0 0 25px;
}

.headquarters-address,
.headquarters-contact {
    color: #6c757d;
    font-size: 1rem;
    line-height: 1.6;
}
@media (max-width: 1200px) {
    .hello-block .merhaba-title { font-size: 2.8rem; }
    .country-block h3 { font-size: 1.5rem; }
    .country-block p { font-size: 0.85rem; }
    .country-block { left: 45%; }
    .form-card-wrapper .country-block {
        left: 5%;
        top: 0;
    }
    .form-divider {
        margin-top: 20px;
    }
    /* Adjust map points for smaller screens */
    .map-point {
        transform: scale(0.8);
    }
}
                    @media (max-width: 992px) {
    .hello-block-desktop {
        display: none;
    }
    .hello-block-mobile {
        display: block;
    }
    .bottom-section { flex-direction: column-reverse; gap: 20px; padding: 0; }
    .left-section, .form-card-wrapper { width: 100%; margin-left: 0; }
    .form-card-wrapper { left: 0; }
    .form-card-wrapper .country-block {
        left: 0;
        top: 0;
        margin-bottom: 20px;
    }
    .form-divider {
        margin-top: 0;
        margin-bottom: 20px;
    }
    .iletisim-filtercard, .social-section {
        width: 90%;

    }
    /* Keep contact-card visible but adjust */
    .contact-card {
        margin-bottom: 0;
    }
    .headquarters-spacer {
        display: none;
    }
    .headquarters-content {
        width: 100%;
        padding: 15px;
    }
    /* Smaller map points */
    .map-point {
        transform: scale(0.7);
    }
    .phone-icon {
        width: 180px;
        height: 240px;
        right: 15px;
        top: 60%;
    }
    .phone-icon lottie-player {
        width: 160px !important;
        height: 220px !important;
    }
    .iletisim-filtercard-content { margin-right: 200px; }
}
     @media (max-width: 768px) {
    .form-card-wrapper { left: 0; }
    .form-card-wrapper .country-block {
        left: 0;
        top: 0;
    }
    .country-contact-info span {
        display: block;
        margin-left: 0 !important;
        margin-right: 0 !important;
    }
    .country-contact-info span + span {
        margin-top: 8px !important;
    }
    /* Even smaller map points */
    .map-point {
        transform: scale(0.6);
    }
    /* Adjust text blocks */
    .hello-block .merhaba-title { font-size: 2rem; }
    .hello-block p { font-size: 0.8rem; }
    .country-block { left: 30%; }
    .phone-icon {
        width: 150px;
        height: 200px;
        right: 10px;
        top: 55%;
    }
    .phone-icon lottie-player {
        width: 130px !important;
        height: 180px !important;
    }
    .iletisim-filtercard-content { margin-right: 160px; }
}
    @media (max-width: 576px) {
    .form-grid { grid-template-columns: 1fr; }
    .contact-page-container { padding: 20px 10px; }
    .iletisim-filtercard, .form-card-wrapper { padding: 15px; }
    .form-card-wrapper { left: 0; }
    .form-card-wrapper .country-block {
        left: 0%;
        top: 0;
        margin-bottom: 15px;
    }
    .submit-btn{
        width: 90%;
    }
    .form-card{
            background-color:#f1f5f5 ;
    padding: 0;
     border-radius: 0;
    }
    .left-section {
        width: 100%;
        margin-left: 0;
    }
    /* Smallest map points */
    .map-point {
        transform: scale(0.5);
    }
    /* Adjust text positioning for mobile */
    .hello-block {
        left: 0%;
        bottom: 6%;
    }
    .hello-block .merhaba-title { font-size: 1.8rem; }
    .hello-block p {
        font-size: 0.75rem;
        max-width: 200px;
    }
    .country-block {
        left: 35%;
        bottom: 6%;
    }
    .iletisim-filtercard h3 { font-size: 1.8rem; }
    .iletisim-filtercard-content { margin-right: 130px; }
    .socials { flex-wrap: wrap;padding: 15px; }
    .socials span { margin-bottom: 10px; width: 100%; }
    .phone-icon {
        width: 120px;
        height: 160px;
        right: 8px;
        top: 50%;
    }
    .phone-icon lottie-player {
        width: 100px !important;
        height: 140px !important;
    }
}

.ilteisimfiltrenisec{
    font-size: 2.2rem !important;
    font-weight: bold !important;
    line-height: 1.2 !important;
    margin-bottom: 15px !important;
    color: white !important;
    filter:opacity(1) !important;
    opacity:1 !important;
}
    /* Ürün başlık satırı */
    .product-title-row {
        display: flex;
        justify-content: space-between;
        align-items: flex-end;
        width: 100%;
    }

    .product-name {
        margin: 0;
        flex: 1;
    }

    /* Ürün kategorisi stili */
    .product-category {
        font-size: 11px;
        color: #999;
        font-weight: 400;
        text-transform: uppercase;
        letter-spacing: 0.5px;
        opacity: 0.7;
        white-space: nowrap;
        margin-left: 8px;
    }

    /* Ana kategori geçiş butonları */
    .main-category-switcher {
        display: flex;
        gap: 8px;
        margin-bottom: 20px;
    }

    .main-category-btn {
        flex: 1;
        padding: 10px 12px;
        background: #f8f9fa;
        border: 1px solid #e9ecef;
        border-radius: 6px;
        text-decoration: none;
        color: #6c757d;
        font-size: 13px;
        font-weight: 500;
        text-align: center;
        transition: all 0.3s ease;
        text-transform: uppercase;
        letter-spacing: 0.5px;
    }

    .main-category-btn:hover {
        background: #e9ecef;
        color: #495057;
        text-decoration: none;
    }

    .main-category-btn.active {
        background: #1B9AD6;
        color: white;
        border-color: #1B9AD6;
    }

    /* Sidebar kategori başlığı */
    .category-header {
        padding: 15px 0;
        border-bottom: 1px solid #eee;
        margin-bottom: 15px;
    }

    .category-header h4 {
        margin: 0;
        font-size: 16px;
        font-weight: 600;
        color: #333;
        text-transform: none;
        letter-spacing: 0.5px;
    }

/* Search Modal & Results Styles */

/* Search Modal */
.search-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(5px);
  display: flex;
  align-items: flex-start;
  justify-content: center;
  z-index: 10000;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  padding-top: 5%;
}

.search-modal.active {
  opacity: 1;
  visibility: visible;
}

.search-modal-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  cursor: pointer;
}

.search-modal-content {
  position: relative;
  background: white;
  border-radius: 20px;
  width: 95%;
  max-width: 900px;
  max-height: 85vh;
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.2);
  animation: searchModalSlideIn 0.3s ease;
}

@keyframes searchModalSlideIn {
  from {
    transform: translateY(-50px) scale(0.95);
    opacity: 0;
  }
  to {
    transform: translateY(0) scale(1);
    opacity: 1;
  }
}

.search-modal-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 25px;
  border-bottom: 1px solid #f0f0f0;
}

.search-modal-title {
  font-size: 24px;
  font-weight: 700;
  color: #001B48;
  margin: 0;
}

.search-modal-close {
  background: #f8f9fa;
  border: none;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.2s ease;
}

.search-modal-close:hover {
  background: #e9ecef;
  transform: scale(1.05);
}

.search-modal-close i {
  color: #666;
  font-size: 20px;
}

.search-modal-body {
  padding: 25px;
  max-height: 70vh;
  overflow-y: auto;
}

/* Search Input */
.search-input-container {
  position: relative;
  margin-bottom: 25px;
}

.search-input {
  width: 92%;
  padding: 15px 50px 15px 20px;
  border: 2px solid #e9ecef;
  border-radius: 15px;
  font-size: 16px;
  transition: all 0.3s ease;
  outline: none;
}

.search-input:focus {
  border-color: #019cd3;
  box-shadow: 0 0 0 3px rgba(1, 156, 211, 0.1);
}

.search-input-icon {
  position: absolute;
  right: 15px;
  top: 50%;
  transform: translateY(-50%);
  color: #666;
  font-size: 24px;
}

/* Search Suggestions */
.search-suggestions {
  display: block;
}

.search-suggestion-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 15px;
  border-radius: 10px;
  cursor: pointer;
  transition: all 0.2s ease;
  margin-bottom: 5px;
}

.search-suggestion-item:hover {
  background: #f8f9fa;
}

.search-suggestion-item i {
  color: #019cd3;
  font-size: 20px;
}

.search-suggestion-item span {
  color: #333;
  font-weight: 500;
}

/* "Şunu mu demek istediniz" Önerileri */
.search-suggestions-section {
  margin-bottom: 20px;
  padding: 15px;
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
  border-radius: 12px;
  border: 1px solid #dee2e6;
}

.search-suggestions-title {
  font-size: 16px;
  font-weight: 600;
  color: #019cd3;
  margin: 0 0 12px 0;
  display: flex;
  align-items: center;
  gap: 8px;
}

.search-suggestions-title i {
  font-size: 18px;
  color: #ffc107;
}

.search-suggestion-items {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.search-suggestion-chip {
  display: inline-block;
  padding: 6px 14px;
  background: #019cd3;
  color: white;
  border-radius: 20px;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
  border: none;
}

.search-suggestion-chip:hover {
  background: #0288b7;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(1, 156, 211, 0.3);
}

/* Search Results */
.search-results {
  display: block;
  max-height: 500px;
  overflow-y: auto;
}

.search-results-section {
  margin-bottom: 25px;
  border-bottom: 1px solid #eee;
  padding-bottom: 20px;
  display: block !important;
  visibility: visible !important;
}

.search-results-section:last-child {
  border-bottom: none;
  margin-bottom: 0;
}

.search-results-title {
  font-size: 18px;
  font-weight: 600;
  color: #019cd3;
  margin: 0 0 15px 0;
  display: flex;
  align-items: center;
  gap: 10px;
}

.search-results-title i {
  font-size: 20px;
  color: #019cd3;
}

.search-result-item {
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 12px;
  border: 1px solid #e9ecef;
  border-radius: 10px;
  margin-bottom: 10px;
  cursor: pointer;
  transition: all 0.3s ease;
  background: white;
}

.search-result-item:hover {
  background: #f8f9fa;
  border-color: #019cd3;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(1, 156, 211, 0.15);
}

.search-result-image {
  width: 60px;
  height: 60px;
  border-radius: 8px;
  overflow: hidden;
  flex-shrink: 0;
}

.search-result-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.search-result-content {
  flex: 1;
  min-width: 0;
}

.search-result-title {
  font-size: 16px;
  font-weight: 600;
  color: #333;
  margin: 0 0 5px 0;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.search-result-meta {
  font-size: 13px;
  color: #019cd3;
  margin: 0 0 5px 0;
  font-weight: 500;
}

.search-result-arrow {
  color: #019cd3;
  font-size: 20px;
  flex-shrink: 0;
  transition: transform 0.3s ease;
}

.search-result-item:hover .search-result-arrow {
  transform: translateX(5px);
}

.search-results.active {
  display: block;
}

.search-results-section {
  margin-bottom: 25px;
}

.search-results-title {
  font-size: 18px;
  font-weight: 600;
  color: #001B48;
  margin: 0 0 15px 0;
  display: flex;
  align-items: center;
  gap: 8px;
}

.search-results-title i {
  color: #019cd3;
  font-size: 20px;
}

.search-result-item {
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 15px;
  border-radius: 12px;
  cursor: pointer;
  transition: all 0.2s ease;
  margin-bottom: 10px;
  border: 1px solid #f0f0f0;
}

.search-result-item:hover {
  background: #f8f9fa;
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.search-result-image {
  width: 60px;
  height: 60px;
  border-radius: 8px;
  overflow: hidden;
  flex-shrink: 0;
}

.search-result-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.search-result-content {
  flex: 1;
}

.search-result-title {
  font-size: 16px;
  font-weight: 600;
  color: #001B48;
  margin: 0 0 5px 0;
  line-height: 1.3;
}

.search-result-category {
  font-size: 13px;
  color: #019cd3;
  margin: 0 0 5px 0;
  font-weight: 500;
}

.search-result-meta {
  font-size: 13px;
  color: #666;
  margin: 0 0 5px 0;
}

.search-result-description {
  font-size: 14px;
  color: #666;
  margin: 0 0 5px 0;
  line-height: 1.4;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.search-result-section {
  display: inline-block;
  font-size: 12px;
  color: #019cd3;
  background: rgba(1, 156, 211, 0.1);
  padding: 2px 8px;
  border-radius: 12px;
  font-weight: 500;
  margin-top: 5px;
}

.search-result-arrow {
  color: #019cd3;
  font-size: 24px;
  transition: transform 0.2s ease;
}

.search-result-item:hover .search-result-arrow {
  transform: translateX(5px);
}

/* Search Loading */
.search-loading {
  text-align: center;
  padding: 40px 20px;
}

.search-loading-spinner {
  width: 40px;
  height: 40px;
  border: 3px solid #f0f0f0;
  border-top: 3px solid #019cd3;
  border-radius: 50%;
  animation: searchSpinner 1s linear infinite;
  margin: 0 auto 15px;
}

@keyframes searchSpinner {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

.search-loading p {
  color: #666;
  font-size: 16px;
  margin: 0;
}

/* Search No Results */
.search-no-results {
  text-align: center;
  padding: 40px 20px;
}

.search-no-results i {
  font-size: 60px;
  color: #ddd;
  margin-bottom: 15px;
}

.search-no-results h3 {
  color: #001B48;
  font-size: 20px;
  margin: 0 0 10px 0;
}

.search-no-results p {
  color: #666;
  font-size: 16px;
  margin: 0;
}

/* Show All Results Link */
.search-show-all {
  margin-top: 20px;
  text-align: center;
}

.search-show-all-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 25px;
  background: #019cd3;
  color: white;
  text-decoration: none;
  border-radius: 10px;
  font-weight: 600;
  transition: all 0.3s ease;
}

.search-show-all-btn:hover {
  background: #0288b7;
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(1, 156, 211, 0.3);
  color: white;
}

/* Search Results Page Styles */
.search-hero {
  position: relative;
  min-height: 400px;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.search-hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.search-hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.search-hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(0, 27, 72, 0.85) 0%, rgba(1, 156, 211, 0.75) 100%);
}

.search-hero-content {
  position: relative;
  z-index: 2;
  width: 100%;
  text-align: center;
  color: white;
}

.search-hero-title {
  font-size: 48px;
  font-weight: 700;
  margin: 0 0 15px 0;
  line-height: 1.2;
}

.search-hero-subtitle {
  font-size: 20px;
  margin: 0 0 30px 0;
  opacity: 0.9;
}

.search-result-count {
  color: #FFD700;
  font-weight: 700;
}

.search-hero-input-container {
  max-width: 600px;
  margin: 0 auto;
}

.search-hero-input-wrapper {
  position: relative;
  display: flex;
  background: white;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.search-hero-input {
  flex: 1;
  padding: 18px 20px;
  border: none;
  font-size: 16px;
  outline: none;
}

.search-hero-btn {
  padding: 18px 25px;
  background: #019cd3;
  border: none;
  cursor: pointer;
  transition: background 0.3s ease;
}

.search-hero-btn:hover {
  background: #0288b7;
}

.search-hero-btn i {
  color: white;
  font-size: 20px;
}

/* Search Results Section */
.search-results-section {
  padding: 60px 0;
  background: #f8f9fa;
}

.search-results-category {
  margin-bottom: 50px;
}

.search-results-category-title {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 28px;
  font-weight: 700;
  color: #001B48;
  margin: 0 0 30px 0;
  padding-bottom: 15px;
  border-bottom: 3px solid #019cd3;
}

.search-results-category-title i {
  color: #019cd3;
  font-size: 32px;
}

.search-results-count {
  color: #666;
  font-weight: 500;
  font-size: 20px;
}

.search-results-grid {
  display: grid;
  gap: 25px;
}

.products-grid,
.categories-grid {
  grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
}

.blogs-grid,
.pages-grid,
.blog-categories-grid {
  grid-template-columns: repeat(auto-fill, minmax(400px, 1fr));
}

.search-result-card {
  background: white;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  border: 1px solid #f0f0f0;
}

.search-result-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
  border-color: #019cd3;
}

.search-result-card .search-result-image {
  width: 100%;
  height: 200px;
  overflow: hidden;
}

.search-result-card .search-result-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

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

.search-result-card .search-result-content {
  padding: 25px;
}

.search-result-card .search-result-title {
  font-size: 20px;
  font-weight: 700;
  color: #001B48;
  margin: 0 0 10px 0;
  line-height: 1.3;
}

.search-result-card .search-result-category {
  font-size: 14px;
  color: #019cd3;
  font-weight: 600;
  margin: 0 0 10px 0;
}

.search-result-card .search-result-meta {
  font-size: 14px;
  color: #666;
  margin: 0 0 15px 0;
}

.search-result-card .search-result-description {
  font-size: 15px;
  color: #666;
  line-height: 1.5;
  margin: 0 0 20px 0;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.search-result-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #019cd3;
  text-decoration: none;
  font-weight: 600;
  font-size: 16px;
  transition: all 0.2s ease;
}

.search-result-link:hover {
  color: #0288b7;
  gap: 12px;
}

/* No Results Page */
.search-no-results {
  text-align: center;
  padding: 80px 20px;
  background: white;
  border-radius: 20px;
  margin: 40px 0;
}

.search-no-results-icon {
  margin-bottom: 25px;
}

.search-no-results-icon i {
  font-size: 80px;
  color: #ddd;
}

.search-no-results-title {
  font-size: 32px;
  font-weight: 700;
  color: #001B48;
  margin: 0 0 15px 0;
}

.search-no-results-description {
  font-size: 18px;
  color: #666;
  margin: 0 0 40px 0;
  line-height: 1.5;
}

.search-suggestions-container {
  margin-bottom: 40px;
}

.search-suggestions-title {
  font-size: 20px;
  font-weight: 600;
  color: #001B48;
  margin: 0 0 15px 0;
}

.search-suggestions-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.search-suggestions-list li {
  padding: 8px 0;
  color: #666;
  font-size: 16px;
}

.search-suggestions-list li:before {
  content: "•";
  color: #019cd3;
  margin-right: 10px;
}

.search-popular-terms-title {
  font-size: 20px;
  font-weight: 600;
  color: #001B48;
  margin: 0 0 15px 0;
}

.search-popular-terms-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
}

.search-popular-term {
  padding: 10px 20px;
  background: #f8f9fa;
  color: #019cd3;
  text-decoration: none;
  border-radius: 25px;
  font-weight: 500;
  transition: all 0.3s ease;
  border: 1px solid #e9ecef;
}

.search-popular-term:hover {
  background: #019cd3;
  color: white;
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(1, 156, 211, 0.3);
}

/* Highlight Styling */
mark {
  background: #FFD700;
  color: #001B48;
  padding: 2px 4px;
  border-radius: 3px;
  font-weight: 600;
}

/* Mobile Responsive */
@media (max-width: 768px) {
  .search-modal-content {
    width: 95%;
    margin: 10px;
    max-height: 90vh;
  }

  .search-modal-header {
    padding: 15px 20px;
  }

  .search-modal-title {
    font-size: 20px;
  }

  .search-modal-body {
    padding: 20px;
  }

  .search-hero-title {
    font-size: 32px;
  }

  .search-hero-subtitle {
    font-size: 16px;
  }

  .search-results-category-title {
    font-size: 24px;
  }

  .products-grid,
  .categories-grid,
  .blogs-grid,
  .pages-grid,
  .blog-categories-grid {
    grid-template-columns: 1fr;
  }

  .search-result-card .search-result-image {
    height: 160px;
  }

  .search-popular-terms-list {
    flex-direction: column;
    align-items: center;
  }

  .search-popular-term {
    text-align: center;
    min-width: 120px;
  }
}

/* CSS Değişkenleri */
.aytok-tasarim-1-container {
    --aytok-tasarim-1-brand-primary: #0077b6;
    --aytok-tasarim-1-brand-secondary: #03a9f4;
    --aytok-tasarim-1-brand-dark: #023e8a;
    --aytok-tasarim-1-text-primary: #1a202c;
    --aytok-tasarim-1-text-secondary: #4a5568;
    --aytok-tasarim-1-bg-light: #f7f8fa;
    --aytok-tasarim-1-bg-white: #ffffff;
    --aytok-tasarim-1-border-color: #e2e8f0;
    --aytok-tasarim-1-shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --aytok-tasarim-1-shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --aytok-tasarim-1-radius-md: 8px;
    --aytok-tasarim-1-radius-lg: 16px;
    --aytok-tasarim-1-font-sans: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
}

/* Global Stiller */
.aytok-tasarim-1-catalog-library-page {
    background-color: var(--aytok-tasarim-1-bg-light);
    font-family: var(--aytok-tasarim-1-font-sans);
    padding: 3rem 0;
}
.aytok-tasarim-1-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

/* Sayfa Başlığı */
.aytok-tasarim-1-catalog-header {
    margin-bottom: 3rem;
    text-align: left;
}
.aytok-tasarim-1-breadcrumbs {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.875rem;
    margin-bottom: 1rem;
    color: var(--aytok-tasarim-1-text-secondary);
}
.aytok-tasarim-1-breadcrumbs a {
    color: var(--aytok-tasarim-1-brand-primary);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 0.25rem;
    transition: color 0.2s;
}
.aytok-tasarim-1-breadcrumbs a:hover {
    color: var(--aytok-tasarim-1-brand-dark);
}
.aytok-tasarim-1-breadcrumbs .material-icons {
    font-size: 1.125rem;
}
.aytok-tasarim-1-breadcrumbs .aytok-tasarim-1-separator {
    color: var(--aytok-tasarim-1-border-color);
}

.aytok-tasarim-1-page-title {
    font-size: 2.25rem;
    font-weight: 700;
    color: var(--aytok-tasarim-1-text-primary);
    margin-bottom: 0.5rem;
}
.aytok-tasarim-1-page-subtitle {
    font-size: 1.125rem;
    color: var(--aytok-tasarim-1-text-secondary);
    max-width: 600px;
}

/* İçerik Ana Yapısı (Grid) */
.aytok-tasarim-1-catalog-content-wrapper {
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 2.5rem;
    align-items: flex-start;
}

/* Kenar Çubuğu (Sidebar) */
.aytok-tasarim-1-catalog-sidebar {
    position: sticky;
    top: 2rem;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}
.aytok-tasarim-1-sidebar-widget {
    background-color: var(--aytok-tasarim-1-bg-white);
    border: 1px solid var(--aytok-tasarim-1-border-color);
    border-radius: var(--aytok-tasarim-1-radius-lg);
    padding: 1.5rem;
}
.aytok-tasarim-1-widget-title {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--aytok-tasarim-1-text-primary);
    margin: 0 0 1rem 0;
}

/* Arama Widget'ı */
.aytok-tasarim-1-search-widget {
    position: relative;
}
.aytok-tasarim-1-search-widget input {
    width: 100%;
    padding: 0.75rem 2.5rem 0.75rem 1rem;
    border-radius: var(--aytok-tasarim-1-radius-md);
    border: 1px solid var(--aytok-tasarim-1-border-color);
    font-size: 1rem;
    transition: border-color 0.2s, box-shadow 0.2s;
}
.aytok-tasarim-1-search-widget input:focus {
    outline: none;
    border-color: var(--aytok-tasarim-1-brand-primary);
    box-shadow: 0 0 0 3px rgba(0, 119, 182, 0.2);
}
.aytok-tasarim-1-search-widget .material-icons {
    position: absolute;
    right: 1.75rem;
    top: 50%;
    transform: translateY(-50%);
    color: var(--aytok-tasarim-1-text-secondary);
}

/* Kategori Widget'ı */
.aytok-tasarim-1-category-widget ul {
    list-style: none;
    padding: 0;
    margin: 0;
}
.aytok-tasarim-1-category-widget li a {
    display: flex;
    justify-content: space-between;
    padding: 0.75rem 0.25rem;
    color: var(--aytok-tasarim-1-text-secondary);
    text-decoration: none;
    font-weight: 500;
    border-radius: var(--aytok-tasarim-1-radius-md);
    transition: background-color 0.2s, color 0.2s;
}
.aytok-tasarim-1-category-widget li a:hover {
    background-color: var(--aytok-tasarim-1-bg-light);
    color: var(--aytok-tasarim-1-text-primary);
}
.aytok-tasarim-1-category-widget li a.active {
    color: var(--aytok-tasarim-1-brand-primary);
    font-weight: 700;
}
.aytok-tasarim-1-category-widget li a span {
    background-color: #eef8ff;
    color: var(--aytok-tasarim-1-brand-primary);
    font-size: 0.75rem;
    padding: 0.125rem 0.5rem;
    border-radius: 1rem;
}

/* Öne Çıkan Widget */
.aytok-tasarim-1-featured-widget {
    border: 2px solid var(--aytok-tasarim-1-brand-primary);
    text-align: center;
}
.aytok-tasarim-1-featured-badge {
    display: inline-block;
    background-color: var(--aytok-tasarim-1-brand-primary);
    color: white;
    padding: 0.25rem 0.75rem;
    border-radius: 1rem;
    font-size: 0.75rem;
    font-weight: 600;
    margin-bottom: 1rem;
    text-transform: uppercase;
}
.aytok-tasarim-1-featured-widget .aytok-tasarim-1-widget-title { text-align: center; }
.aytok-tasarim-1-featured-image {
    width: 100%;
    max-width: 200px;
    height: auto;
    object-fit: contain;
    margin-bottom: 1rem;
}
.aytok-tasarim-1-featured-widget p {
    color: var(--aytok-tasarim-1-text-secondary);
    font-size: 0.875rem;
    margin-bottom: 1.5rem;
}
.aytok-tasarim-1-download-btn-featured {
    width: 90%;
    background: var(--aytok-tasarim-1-brand-primary);
    color: white;
    text-decoration: none;
    border: none;
    padding: 0.75rem 1rem;
    border-radius: var(--aytok-tasarim-1-radius-md);
    font-weight: 600;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    cursor: pointer;
    transition: background-color 0.2s, transform 0.2s;
}
.aytok-tasarim-1-download-btn-featured:hover {
    background-color: var(--aytok-tasarim-1-brand-dark);
    transform: translateY(-2px);
}

/* Katalog Listesi */
.aytok-tasarim-1-catalog-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}
.aytok-tasarim-1-catalog-card {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    background-color: var(--aytok-tasarim-1-bg-white);
    padding: 1.5rem;
    border: 1px solid var(--aytok-tasarim-1-border-color);
    border-radius: var(--aytok-tasarim-1-radius-lg);
    transition: box-shadow 0.3s, border-color 0.3s;
}
.aytok-tasarim-1-catalog-card:hover {
    border-color: var(--aytok-tasarim-1-brand-secondary);
    box-shadow: var(--aytok-tasarim-1-shadow-md);
}

/* Kart İkonu */
.aytok-tasarim-1-card-icon {
    flex-shrink: 0;
    width: 64px;
    height: 64px;
    border-radius: var(--aytok-tasarim-1-radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
}
.aytok-tasarim-1-card-icon .material-icons { font-size: 2rem; }
.aytok-tasarim-1-card-icon.aytok-tasarim-1-pdf { background-color: #d32f2f; }
.aytok-tasarim-1-card-icon.aytok-tasarim-1-doc { background-color: #1976d2; }
.aytok-tasarim-1-card-icon.aytok-tasarim-1-cert { background-color: #388e3c; }

/* Kart Detayları */
.aytok-tasarim-1-card-details {
    flex-grow: 1;
}
.aytok-tasarim-1-card-title {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--aytok-tasarim-1-text-primary);
    margin: 0 0 0.5rem 0;
}
.aytok-tasarim-1-card-description {
    font-size: 0.95rem;
    color: var(--aytok-tasarim-1-text-secondary);
    margin: 0 0 1rem 0;
    line-height: 1.6;
}
.aytok-tasarim-1-card-meta {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    font-size: 0.875rem;
    color: var(--aytok-tasarim-1-text-secondary);
}
.aytok-tasarim-1-card-meta span {
    display: flex;
    align-items: center;
    gap: 0.25rem;
}
.aytok-tasarim-1-card-meta .material-icons {
    font-size: 1rem;
}

/* Kart İndirme Butonu */
.aytok-tasarim-1-card-download-btn {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    text-decoration: none;
    background-color: var(--aytok-tasarim-1-bg-light);
    border: 1px solid var(--aytok-tasarim-1-border-color);
    border-radius: 50%;
    color: var(--aytok-tasarim-1-text-secondary);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s;
}
.aytok-tasarim-1-card-download-btn:hover {
    background-color: var(--aytok-tasarim-1-brand-primary);
    color: white;
    border-color: var(--aytok-tasarim-1-brand-primary);
    transform: scale(1.1);
}

/* Disabled state for catalog download buttons */
.aytok-tasarim-1-card-download-btn.disabled {
    background-color: #f5f5f5;
    color: #ccc;
    border-color: #e0e0e0;
    cursor: not-allowed;
    opacity: 0.6;
}
.aytok-tasarim-1-card-download-btn.disabled:hover {
    background-color: #f5f5f5;
    color: #ccc;
    border-color: #e0e0e0;
    transform: none;
}

/* ===== KATALOG SAYFASI ACTION BUTTONS ===== */

/* Featured Catalog Actions */
.aytok-tasarim-1-featured-actions {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    margin-top: 1rem;
}

.aytok-tasarim-1-action-btn {
    width: 90%;
    border: none;
    padding: 0.75rem 1rem;
    border-radius: 8px;
    font-weight: 600;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    cursor: pointer;
    transition: all 0.2s ease;
    text-decoration: none;
}

.aytok-tasarim-1-action-btn .material-icons {
    font-size: 1.1rem;
}

.aytok-tasarim-1-view-btn {
    background: #f3f4f6;
    color: #6b7280;
}

.aytok-tasarim-1-view-btn:hover {
    background: #e5e7eb;
    color: #374151;
    transform: translateY(-2px);
}

.aytok-tasarim-1-download-btn-featured {
    background: linear-gradient(90deg, #0391d0, #0eb6da);
    color: white;
}

.aytok-tasarim-1-download-btn-featured:hover {
    background: #2563eb;
    transform: translateY(-2px);
}

/* Card Actions for Regular Catalogs */
.aytok-tasarim-1-card-actions {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.aytok-tasarim-1-card-action-btn {
    width: 36px;
    height: 36px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.2s ease;
    text-decoration: none;
    border: none;
    background: transparent;
}

.aytok-tasarim-1-card-action-btn .material-icons {
    font-size: 1.1rem;
}

/* View Button for Cards */
.aytok-tasarim-1-card-action-btn.aytok-tasarim-1-view-btn {
    background: #f3f4f6;
    color: #6b7280;
}

.aytok-tasarim-1-card-action-btn.aytok-tasarim-1-view-btn:hover {
    background: #e5e7eb;
    color: #374151;
}

/* Download Button for Cards */
.aytok-tasarim-1-card-action-btn.aytok-tasarim-1-download-btn {
    background: linear-gradient(90deg, #0391d0, #0eb6da);
    color: white;
}

.aytok-tasarim-1-card-action-btn.aytok-tasarim-1-download-btn:hover {
    background: #2563eb;
}

/* Disabled State for Card Action Buttons */
.aytok-tasarim-1-card-action-btn.disabled {
    background: #f3f4f6;
    color: #9ca3af;
    cursor: not-allowed;
}

.aytok-tasarim-1-card-action-btn.disabled:hover {
    background: #f3f4f6;
    color: #9ca3af;
    transform: none;
}

/* ===== YENİ KATALOG TASARIMI - HERO + GRID ===== */

/* Öne Çıkan Katalog Hero Section */
.aytok-tasarim-1-featured-hero {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
    background: linear-gradient(135deg, #ffffff 0%, #f0f9ff 100%);
    border-radius: var(--aytok-tasarim-1-radius-lg);
    padding: 3rem;
    margin-bottom: 4rem;
    box-shadow: var(--aytok-tasarim-1-shadow-md);
    border: 1px solid var(--aytok-tasarim-1-border-color);
}

.aytok-tasarim-1-featured-hero-content {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.aytok-tasarim-1-featured-badge-hero {
    display: inline-block;
    background: linear-gradient(135deg, var(--aytok-tasarim-1-brand-primary) 0%, var(--aytok-tasarim-1-brand-secondary) 100%);
    color: white;
    padding: 0.5rem 1.25rem;
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    width: fit-content;
}

.aytok-tasarim-1-featured-hero-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--aytok-tasarim-1-text-primary);
    margin: 0;
    line-height: 1.2;
}

.aytok-tasarim-1-featured-hero-description {
    font-size: 1.125rem;
    color: var(--aytok-tasarim-1-text-secondary);
    line-height: 1.6;
    margin: 0;
}

.aytok-tasarim-1-featured-hero-actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.aytok-tasarim-1-hero-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.875rem 1.75rem;
    border-radius: var(--aytok-tasarim-1-radius-md);
    font-weight: 600;
    font-size: 1rem;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.aytok-tasarim-1-hero-view-btn {
    background-color: var(--aytok-tasarim-1-bg-white);
    color: var(--aytok-tasarim-1-brand-primary);
    border-color: var(--aytok-tasarim-1-brand-primary);
}

.aytok-tasarim-1-hero-view-btn:hover {
    background-color: var(--aytok-tasarim-1-brand-primary);
    color: white;
    transform: translateY(-2px);
    box-shadow: var(--aytok-tasarim-1-shadow-md);
}

.aytok-tasarim-1-hero-download-btn {
    background-color: var(--aytok-tasarim-1-brand-primary);
    color: white;
}

.aytok-tasarim-1-hero-download-btn:hover {
    background-color: var(--aytok-tasarim-1-brand-dark);
    transform: translateY(-2px);
    box-shadow: var(--aytok-tasarim-1-shadow-md);
}

.aytok-tasarim-1-hero-btn .material-icons {
    font-size: 1.25rem;
}

.aytok-tasarim-1-featured-hero-image {
    display: flex;
    justify-content: center;
    align-items: center;
}

.aytok-tasarim-1-featured-hero-image img {
    max-width: 100%;
    height: auto;
    border-radius: var(--aytok-tasarim-1-radius-md);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

/* Grid Section */
.aytok-tasarim-1-catalog-grid-section {
    margin-top: 2rem;
}

.aytok-tasarim-1-section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.aytok-tasarim-1-section-title {
    font-size: 2.25rem;
    font-weight: 700;
    color: var(--aytok-tasarim-1-text-primary);
    margin: 0 0 0.75rem 0;
}

.aytok-tasarim-1-section-subtitle {
    font-size: 1.125rem;
    color: var(--aytok-tasarim-1-text-secondary);
    margin: 0;
}

/* Katalog Grid */
.aytok-tasarim-1-catalog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 2rem;
}

.aytok-tasarim-1-catalog-grid-card {
    background-color: var(--aytok-tasarim-1-bg-white);
    border: 1px solid var(--aytok-tasarim-1-border-color);
    border-radius: var(--aytok-tasarim-1-radius-lg);
    padding: 1.75rem;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.aytok-tasarim-1-catalog-grid-card:hover {
    border-color: var(--aytok-tasarim-1-brand-secondary);
    box-shadow: var(--aytok-tasarim-1-shadow-md);
    transform: translateY(-4px);
}

.aytok-tasarim-1-grid-card-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 1rem;
}

.aytok-tasarim-1-grid-card-icon {
    flex-shrink: 0;
    width: 56px;
    height: 56px;
    border-radius: var(--aytok-tasarim-1-radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
}

.aytok-tasarim-1-grid-card-icon .material-icons {
    font-size: 1.75rem;
}

.aytok-tasarim-1-grid-card-icon.aytok-tasarim-1-pdf {
    background: linear-gradient(135deg, #d32f2f 0%, #f44336 100%);
}

.aytok-tasarim-1-grid-card-actions {
    display: flex;
    gap: 0.5rem;
}

.aytok-tasarim-1-grid-action-btn {
    width: 40px;
    height: 40px;
    border-radius: var(--aytok-tasarim-1-radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.2s ease;
    border: 1px solid var(--aytok-tasarim-1-border-color);
    background-color: var(--aytok-tasarim-1-bg-white);
    color: var(--aytok-tasarim-1-text-secondary);
}

.aytok-tasarim-1-grid-action-btn:hover {
    background-color: var(--aytok-tasarim-1-brand-primary);
    color: white;
    border-color: var(--aytok-tasarim-1-brand-primary);
    transform: scale(1.1);
}

.aytok-tasarim-1-grid-action-btn.disabled {
    background: #f3f4f6;
    color: #9ca3af;
    cursor: not-allowed;
    border-color: #e5e7eb;
}

.aytok-tasarim-1-grid-action-btn.disabled:hover {
    background: #f3f4f6;
    color: #9ca3af;
    transform: none;
}

.aytok-tasarim-1-grid-action-btn .material-icons {
    font-size: 1.25rem;
}

.aytok-tasarim-1-grid-card-body {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.aytok-tasarim-1-grid-card-title {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--aytok-tasarim-1-text-primary);
    margin: 0;
    line-height: 1.4;
}

.aytok-tasarim-1-grid-card-description {
    font-size: 0.95rem;
    color: var(--aytok-tasarim-1-text-secondary);
    line-height: 1.6;
    margin: 0;
    flex-grow: 1;
}

/* Empty State */
.no-catalogs-message {
    text-align: center;
    padding: 4rem 2rem;
    background-color: var(--aytok-tasarim-1-bg-white);
    border-radius: var(--aytok-tasarim-1-radius-lg);
    border: 1px solid var(--aytok-tasarim-1-border-color);
}

.no-catalogs-message .material-icons {
    font-size: 4rem;
    color: var(--aytok-tasarim-1-text-secondary);
    margin-bottom: 1rem;
    opacity: 0.5;
}

.no-catalogs-message p {
    font-size: 1.125rem;
    color: var(--aytok-tasarim-1-text-secondary);
    margin: 0;
}

/* Responsive Tasarım - Yeni Tasarım */
@media (max-width: 1024px) {
    .aytok-tasarim-1-featured-hero {
        grid-template-columns: 1fr;
        gap: 2rem;
        padding: 2.5rem;
    }

    .aytok-tasarim-1-featured-hero-title {
        font-size: 2rem;
    }

    .aytok-tasarim-1-catalog-grid {
        grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
        gap: 1.5rem;
    }
}

@media (max-width: 768px) {
    .aytok-tasarim-1-featured-hero {
        padding: 2rem;
        margin-bottom: 3rem;
    }

    .aytok-tasarim-1-featured-hero-title {
        font-size: 1.75rem;
    }

    .aytok-tasarim-1-featured-hero-description {
        font-size: 1rem;
    }

    .aytok-tasarim-1-featured-hero-actions {
        flex-direction: column;
    }

    .aytok-tasarim-1-hero-btn {
        width: 100%;
        justify-content: center;
    }

    .aytok-tasarim-1-section-title {
        font-size: 1.75rem;
    }

    .aytok-tasarim-1-section-subtitle {
        font-size: 1rem;
    }

    .aytok-tasarim-1-catalog-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .aytok-tasarim-1-catalog-grid-card {
        padding: 1.5rem;
    }
}

@media (max-width: 480px) {
    .aytok-tasarim-1-container {
        padding: 0 1rem;
    }

    .aytok-tasarim-1-featured-hero {
        padding: 1.5rem;
        margin-bottom: 2rem;
    }

    .aytok-tasarim-1-featured-hero-title {
        font-size: 1.5rem;
    }

    .aytok-tasarim-1-section-header {
        margin-bottom: 2rem;
    }

    .aytok-tasarim-1-section-title {
        font-size: 1.5rem;
    }

    .aytok-tasarim-1-catalog-grid-card {
        padding: 1.25rem;
    }

    .aytok-tasarim-1-grid-card-icon {
        width: 48px;
        height: 48px;
    }

    .aytok-tasarim-1-grid-card-icon .material-icons {
        font-size: 1.5rem;
    }
}

/* Responsive Tasarım */
@media (max-width: 1024px) {
    .aytok-tasarim-1-catalog-content-wrapper {
        grid-template-columns: 240px 1fr;
        gap: 2rem;
    }
}

@media (max-width: 768px) {
    .aytok-tasarim-1-catalog-content-wrapper {
        grid-template-columns: 1fr;
    }
    .aytok-tasarim-1-catalog-sidebar {
        position: static;
        top: auto;
    }
    .aytok-tasarim-1-page-title { font-size: 1.75rem; }
    .aytok-tasarim-1-page-subtitle { font-size: 1rem; }
}

@media (max-width: 480px) {
    .aytok-tasarim-1-container { padding: 0 1rem; }
    .aytok-tasarim-1-catalog-card {
        flex-direction: column;
        align-items: flex-start;
        text-align: left;
    }
    .aytok-tasarim-1-card-download-btn {
        align-self: flex-end;
        margin-top: 1rem;
    }
    .aytok-tasarim-1-breadcrumbs { font-size: 0.8rem; }
}

/* ===== KULLANIM KILAVUZU SAYFASI STİLLERİ ===== */

/* Global Stiller */
.aytok-kullanım-kılavuzu-page {
    background-color: var(--aytok-tasarim-1-bg-light);
    font-family: var(--aytok-tasarim-1-font-sans);
    padding: 3rem 0;
}

.aytok-kullanım-kılavuzu-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

/* Sayfa Başlığı */
.aytok-kullanım-kılavuzu-header {
    margin-bottom: 3rem;
    text-align: left;
}

.aytok-kullanım-kılavuzu-breadcrumbs {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.875rem;
    margin-bottom: 1rem;
    color: var(--aytok-tasarim-1-text-secondary);
}

.aytok-kullanım-kılavuzu-breadcrumbs a {
    color: var(--aytok-tasarim-1-brand-primary);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 0.25rem;
    transition: color 0.2s;
}

.aytok-kullanım-kılavuzu-breadcrumbs a:hover {
    color: var(--aytok-tasarim-1-brand-dark);
}

.aytok-kullanım-kılavuzu-breadcrumbs .material-icons {
    font-size: 1.125rem;
}

.aytok-kullanım-kılavuzu-separator {
    color: var(--aytok-tasarim-1-border-color);
}

.aytok-kullanım-kılavuzu-page-title {
    font-size: 2.25rem;
    font-weight: 700;
    color: var(--aytok-tasarim-1-text-primary);
    margin-bottom: 0.5rem;
}

.aytok-kullanım-kılavuzu-page-subtitle {
    font-size: 1.125rem;
    color: var(--aytok-tasarim-1-text-secondary);
    max-width: 600px;
}

/* İçerik Ana Yapısı */
.aytok-kullanım-kılavuzu-content-wrapper {
    padding: 2rem 0;
}



/* Kullanım Kılavuzu Listesi - Accordion */
.aytok-kullanım-kılavuzu-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-top: 2rem;
}

.aytok-kullanım-kılavuzu-card {
    background: white;
    border: 1px solid #f1f5f9;
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.2s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.aytok-kullanım-kılavuzu-card:hover {
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
    border-color: #e2e8f0;
}

/* Card Header - Tıklanabilir kısım */
.aytok-kullanım-kılavuzu-card-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.2rem;
    position: relative;
}

.aytok-kullanım-kılavuzu-card-header-clickable {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex: 1;
    cursor: pointer;
    user-select: none;
    border-radius: 8px;
    padding: 0.2rem;
    transition: background-color 0.2s ease;
}

.aytok-kullanım-kılavuzu-card-header-clickable:hover {
    background: #f9fafb;
}

.aytok-kullanım-kılavuzu-card-actions {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

/* Kart İkonu - Header içinde */
.aytok-kullanım-kılavuzu-card-icon {
    width: 40px;
    height: 40px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    flex-shrink: 0;
}

.aytok-kullanım-kılavuzu-card-icon .material-icons {
    font-size: 1.2rem;
}

.aytok-kullanım-kılavuzu-card-icon.aytok-kullanım-kılavuzu-pdf {
    background: #dc2626;
}

/* Kart Başlığı - Header içinde */
.aytok-kullanım-kılavuzu-card-title {
    font-size: 1.1rem;
    font-weight: 600;
    color: #1f2937;
    margin: 0;
    line-height: 1.4;
    flex: 1;
    text-align: left;
}

/* Action Buttons */
.aytok-kullanım-kılavuzu-card-action-btn {
    width: 36px;
    height: 36px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.2s ease;
    text-decoration: none;
    border: none;
    background: transparent;
}

.aytok-kullanım-kılavuzu-card-action-btn .material-icons {
    font-size: 1.1rem;
}

/* View Button */
.aytok-kullanım-kılavuzu-card-view-btn {
    background: #f3f4f6;
    color: #6b7280;
}

.aytok-kullanım-kılavuzu-card-view-btn:hover {
    background: #e5e7eb;
    color: #374151;
}

/* Download Button */
.aytok-kullanım-kılavuzu-card-download-btn-header {
    background: linear-gradient(90deg, #0391d0, #0eb6da);
    color: white;
}

.aytok-kullanım-kılavuzu-card-download-btn-header:hover {
    background: #2563eb;
}

.aytok-kullanım-kılavuzu-card-download-btn-header.disabled {
    background: #f3f4f6;
    color: #9ca3af;
    cursor: not-allowed;
}

.aytok-kullanım-kılavuzu-card-download-btn-header.disabled:hover {
    background: #f3f4f6;
}

/* Toggle Icon */
.aytok-kullanım-kılavuzu-card-toggle {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: #f3f4f6;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.2s ease;
    cursor: pointer;
}

.aytok-kullanım-kılavuzu-card-toggle .material-icons {
    font-size: 1rem;
    color: #6b7280;
}

.aytok-kullanım-kılavuzu-card.expanded .aytok-kullanım-kılavuzu-card-toggle {
    transform: rotate(180deg);
}

/* Card Content - Accordion kısmı */
.aytok-kullanım-kılavuzu-card-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.aytok-kullanım-kılavuzu-card-body {
    padding: 0 1.2rem 1.2rem 1.2rem;
    border-top: 1px solid #f3f4f6;
}

.aytok-kullanım-kılavuzu-card-description {
    font-size: 0.9rem;
    color: #6b7280;
    margin: 1rem 0 1.5rem 0;
    line-height: 1.5;
}



/* Boş mesaj - Minimal */
.aytok-kullanım-kılavuzu-no-guides-message {
    text-align: center;
    padding: 2rem;
    background: white;
    border: 2px dashed #e5e7eb;
    border-radius: 12px;
    color: #6b7280;
    font-size: 0.95rem;
}

/* Responsive Tasarım - Accordion */
@media (max-width: 768px) {
    .aytok-kullanım-kılavuzu-page-title {
        font-size: 1.75rem;
    }
    .aytok-kullanım-kılavuzu-page-subtitle {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .aytok-kullanım-kılavuzu-container {
        padding: 0 1rem;
    }
    .aytok-kullanım-kılavuzu-breadcrumbs {
        font-size: 0.8rem;
    }
    .aytok-kullanım-kılavuzu-card-header {
        padding: 1rem;
        gap: 0.8rem;
    }
    .aytok-kullanım-kılavuzu-card-header-clickable {
        gap: 0.8rem;
    }
    .aytok-kullanım-kılavuzu-card-actions {
        gap: 0.3rem;
    }
    .aytok-kullanım-kılavuzu-card-action-btn {
        width: 32px;
        height: 32px;
    }
    .aytok-kullanım-kılavuzu-card-toggle {
        width: 24px;
        height: 24px;
    }
    .aytok-kullanım-kılavuzu-card-body {
        padding: 0 1rem 1rem 1rem;
    }
    .aytok-kullanım-kılavuzu-card-icon {
        width: 36px;
        height: 36px;
    }
    .aytok-kullanım-kılavuzu-card-title {
        font-size: 1rem;
    }
}

/* === DİL DROPDOWN STİLLERİ === */
.language-dropdown {
  position: relative;
  display: inline-block;
}

.language-dropdown-content {
  position: absolute;
  top: 100%;
  right: 0;
  background: white;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
  min-width: 180px;
  z-index: 1000;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: all 0.3s ease;
}

.language-dropdown-content.active {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.language-option {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 16px;
  color: #001d55;
  text-decoration: none;
  transition: background-color 0.2s ease;
  border-bottom: 1px solid #f0f0f0;
}

.language-option:last-child {
  border-bottom: none;
}

.language-option:hover {
  background-color: #f8f9fa;
  color: #00A9E0;
}

.language-name {
  font-weight: 500;
  font-size: 0.9rem;
}

.language-code {
  font-weight: 600;
  font-size: 0.8rem;
  color: #6c757d;
  background: #f8f9fa;
  padding: 2px 6px;
  border-radius: 4px;
}

/* Mobil dil dropdown */
.mobile-language-dropdown {
  position: relative;
  display: inline-block;
}

.mobile-language-dropdown-content {
  position: absolute;
  bottom: 100%;
  right: -120%;
  background: white;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
  min-width: 160px;
  z-index: 1000;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: all 0.3s ease;
  margin-bottom: 8px;
}

.mobile-language-dropdown-content.active {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.mobile-language-option {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 14px;
  color: #001d55;
  text-decoration: none;
  transition: background-color 0.2s ease;
  border-bottom: 1px solid #f0f0f0;
}

.mobile-language-option:last-child {
  border-bottom: none;
}

.mobile-language-option:hover {
  background-color: #f8f9fa;
  color: #00A9E0;
}

.mobile-language-name {
  font-weight: 500;
  font-size: 0.85rem;
}

.mobile-language-code {
  font-weight: 600;
  font-size: 0.75rem;
  color: #6c757d;
  background: #f8f9fa;
  padding: 2px 5px;
  border-radius: 3px;
}

/* Responsive dil dropdown */
@media (max-width: 768px) {
  .language-dropdown-content {
    min-width: 160px;
  }

  .language-option {
    padding: 10px 14px;
  }

  .language-name {
    font-size: 0.85rem;
  }

  .language-code {
    font-size: 0.75rem;
    padding: 2px 5px;
  }
}

@media (max-width: 480px) {
  .language-dropdown-content {
    min-width: 140px;
  }

  .language-option {
    padding: 8px 12px;
  }

  .language-name {
    font-size: 0.8rem;
  }

  .language-code {
    font-size: 0.7rem;
    padding: 1px 4px;
  }
}

/* ===== PREMIUM & SOFT KATALOG TASARIMI ===== */

.aytok-premium-catalog-page {
    background: linear-gradient(180deg, #f8fafc 0%, #f1f5f9 100%);
    min-height: 50vh;
    font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    position: relative;
    overflow-x: hidden;
}

.aytok-premium-catalog-page::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 400px;
    background: radial-gradient(ellipse at top, rgba(0, 136, 206, 0.03) 0%, transparent 70%);
    pointer-events: none;
}

.aytok-premium-container {
    max-width: 1600px;
    margin: 0 auto;
    padding: 0 2rem;
    position: relative;
    z-index: 1;
}



.aytok-premium-featured-card {
    padding: 2rem 4rem;
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.aytok-premium-featured-card::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(0, 136, 206, 0.05) 0%, transparent 70%);
    pointer-events: none;
}

.aytok-premium-featured-card:hover {
    transform: translateY(-4px);
}

.aytok-premium-featured-content {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    position: relative;
    z-index: 1;
}

.aytok-premium-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    background: linear-gradient(135deg, rgba(0, 136, 206, 0.1) 0%, rgba(0, 136, 206, 0.05) 100%);
    border: 1px solid rgba(0, 136, 206, 0.2);
    color: #008ace;
    padding: 0.625rem 1.25rem;
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 600;
    letter-spacing: 0.3px;
    width: fit-content;
    backdrop-filter: blur(10px);
}

.aytok-premium-badge-dot {
    width: 8px;
    height: 8px;
    background: #008ace;
    border-radius: 50%;
    display: block;
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.6; transform: scale(1.2); }
}

.aytok-premium-featured-title {
    font-size: 3rem;
    font-weight: 700;
    color: #0f172a;
    margin: 0;
    line-height: 1.2;
    letter-spacing: -0.02em;
}

.aytok-premium-featured-description {
    font-size: 1.25rem;
    color: #64748b;
    line-height: 1.7;
    margin: 0;
    font-weight: 400;
}

.aytok-premium-featured-actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    margin-top: 0.5rem;
}

.aytok-premium-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 2rem;
    border-radius: 16px;
    font-weight: 600;
    font-size: 1rem;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
}

.aytok-premium-btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.aytok-premium-btn:hover::before {
    width: 300px;
    height: 300px;
}

.aytok-premium-btn-outline {
    background: rgba(255, 255, 255, 0.8);
    color: #008ace;
    border-color: rgba(0, 136, 206, 0.2);
    backdrop-filter: blur(10px);
}

.aytok-premium-btn-outline:hover {
    background: rgba(0, 136, 206, 0.05);
    border-color: rgba(0, 136, 206, 0.4);
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(0, 136, 206, 0.15);
}

.aytok-premium-btn-primary {
    background: linear-gradient(135deg, #008ace 0%, #00a8e8 100%);
    color: white;
    box-shadow: 0 4px 20px rgba(0, 136, 206, 0.3);
}

.aytok-premium-btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 40px rgba(0, 136, 206, 0.4);
}

.aytok-premium-btn .material-icons {
    font-size: 1.25rem;
    position: relative;
    z-index: 1;
}

.aytok-premium-btn span {
    position: relative;
    z-index: 1;
}

/* Featured Visual */
.aytok-premium-featured-visual {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    max-width: 500px;
    width: 100%;
}

.aytok-premium-image-wrapper-link {
    text-decoration: none;
    display: block;
    width: 100%;
    max-width: 400px;
    cursor: pointer;
}

.aytok-premium-image-wrapper {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
    transition: filter 0.3s ease;
    width: 100%;
}

.aytok-premium-image-wrapper:hover {
    filter: blur(4px);
}

.aytok-premium-image-wrapper img {
    width: 100%;
    height: auto;
    display: block;
    position: relative;
    z-index: 1;
}

.aytok-premium-image-glow {
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(0, 136, 206, 0.2) 0%, transparent 70%);
    animation: rotate 20s linear infinite;
    pointer-events: none;
}

.aytok-premium-image-overlay-box {
    margin-top: 0.75rem;
    backdrop-filter: blur(10px);
    padding: 1rem 1.25rem;
    border-radius: 16px;
    max-width: 500px;
    width: 100%;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: opacity 0.3s ease, transform 0.3s ease, visibility 0.3s ease;
}

.aytok-premium-featured-visual:hover .aytok-premium-image-overlay-box {
    opacity: 1;
    transform: translateY(0);
    visibility: visible;
}

.aytok-premium-overlay-title {
    color: #1a1a1a;
    font-size: 1.25rem;
    font-weight: 700;
    margin: 0 0 0.375rem 0;
    line-height: 1.3;
}

.aytok-premium-overlay-description {
    color: #4a4a4a;
    font-size: 0.9rem;
    margin: 0 0 0.875rem 0;
    line-height: 1.5;
}

.aytok-premium-overlay-actions {
    display: flex;
    gap: 0.75rem;
    flex-wrap: wrap;
}

@keyframes rotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

/* Catalog Section */
.aytok-premium-catalog-section {
    margin-top: 2rem;
}

.aytok-premium-section-header {
    margin-bottom: 4rem;
    text-align: center;
}

.aytok-premium-header-content {
    max-width: 700px;
    margin: 0 auto;
}

.aytok-premium-section-title {
    font-size: 2.75rem;
    font-weight: 700;
    color: #0f172a;
    margin: 0 0 1rem 0;
    letter-spacing: -0.02em;
    line-height: 1.2;
}

.aytok-premium-section-subtitle {
    font-size: 1.125rem;
    color: #64748b;
    margin: 0;
    line-height: 1.6;
    font-weight: 400;
}

/* Catalog Grid */
.aytok-premium-catalog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
    gap: 2rem;
}

.aytok-premium-catalog-card {
    background: rgba(255, 255, 255, 0.6);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    border: 1px solid rgba(255, 255, 255, 0.8);
    border-radius: 24px;
    padding: 2rem;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.03), 0 0 0 1px rgba(0, 0, 0, 0.02);
    position: relative;
    overflow: hidden;
}

.aytok-premium-catalog-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(0, 136, 206, 0.3), transparent);
    opacity: 0;
    transition: opacity 0.4s;
}

.aytok-premium-catalog-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08), 0 0 0 1px rgba(0, 0, 0, 0.03);
    border-color: rgba(0, 136, 206, 0.2);
}

.aytok-premium-catalog-card:hover::before {
    opacity: 1;
}

.aytok-premium-card-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 1rem;
}

.aytok-premium-card-icon-wrapper {
    flex-shrink: 0;
}

.aytok-premium-card-icon {
    width: 64px;
    height: 64px;
    border-radius: 18px;
    background: linear-gradient(135deg, #ef4444 0%, #dc2626 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    box-shadow: 0 8px 24px rgba(239, 68, 68, 0.25);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.aytok-premium-catalog-card:hover .aytok-premium-card-icon {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 12px 32px rgba(239, 68, 68, 0.35);
}

.aytok-premium-card-icon .material-icons {
    font-size: 2rem;
}

.aytok-premium-card-actions {
    display: flex;
    gap: 0.5rem;
}

.aytok-premium-icon-btn {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    background: rgba(255, 255, 255, 0.8);
    border: 1px solid rgba(0, 0, 0, 0.06);
    color: #64748b;
    backdrop-filter: blur(10px);
}

.aytok-premium-icon-btn:hover {
    background: rgba(0, 136, 206, 0.1);
    color: #008ace;
    border-color: rgba(0, 136, 206, 0.2);
    transform: scale(1.1);
}

.aytok-premium-icon-btn-primary {
    background: linear-gradient(135deg, rgba(0, 136, 206, 0.1) 0%, rgba(0, 136, 206, 0.05) 100%);
    color: #008ace;
    border-color: rgba(0, 136, 206, 0.2);
}

.aytok-premium-icon-btn-primary:hover {
    background: linear-gradient(135deg, #008ace 0%, #00a8e8 100%);
    color: white;
    border-color: transparent;
    box-shadow: 0 8px 24px rgba(0, 136, 206, 0.3);
}

.aytok-premium-icon-btn.disabled {
    background: rgba(243, 244, 246, 0.8);
    color: #9ca3af;
    cursor: not-allowed;
    border-color: rgba(229, 231, 235, 0.8);
}

.aytok-premium-icon-btn.disabled:hover {
    transform: none;
    background: rgba(243, 244, 246, 0.8);
    color: #9ca3af;
}

.aytok-premium-icon-btn .material-icons {
    font-size: 1.25rem;
}

.aytok-premium-card-body {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.aytok-premium-card-title {
    font-size: 1.375rem;
    font-weight: 600;
    color: #0f172a;
    margin: 0;
    line-height: 1.4;
    letter-spacing: -0.01em;
}

.aytok-premium-card-description {
    font-size: 1rem;
    color: #64748b;
    line-height: 1.6;
    margin: 0;
    flex-grow: 1;
    font-weight: 400;
}

/* Empty State */
.aytok-premium-empty-state {
    text-align: center;
    padding: 6rem 2rem;
    background: rgba(255, 255, 255, 0.5);
    backdrop-filter: blur(20px);
    border-radius: 24px;
    border: 1px solid rgba(255, 255, 255, 0.8);
}

.aytok-premium-empty-icon {
    margin-bottom: 1.5rem;
}

.aytok-premium-empty-icon .material-icons {
    font-size: 5rem;
    color: #cbd5e1;
    opacity: 0.5;
}

.aytok-premium-empty-text {
    font-size: 1.125rem;
    color: #94a3b8;
    margin: 0;
    font-weight: 400;
}

/* Responsive - Premium Design */
@media (max-width: 1024px) {
    .aytok-premium-featured-card {
        grid-template-columns: 1fr;
        gap: 3rem;
        padding: 3rem;
    }

    .aytok-premium-featured-title {
        font-size: 2.5rem;
    }

    .aytok-premium-catalog-grid {
        grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
        gap: 1.5rem;
    }

    .aytok-premium-section-title {
        font-size: 2.25rem;
    }
}

@media (max-width: 768px) {
    .aytok-premium-catalog-page {
        padding: 3rem 0 4rem;
    }

    .aytok-premium-container {
        padding: 0 1.5rem;
    }

    .aytok-premium-featured-section {
        margin-bottom: 4rem;
    }

    .aytok-premium-featured-card {
        padding: 2.5rem;
        border-radius: 24px;
    }

    .aytok-premium-featured-title {
        font-size: 2rem;
    }

    .aytok-premium-featured-description {
        font-size: 1.125rem;
    }

    .aytok-premium-featured-actions {
        flex-direction: column;
    }

    .aytok-premium-btn {
        width: 100%;
        justify-content: center;
    }

    .aytok-premium-section-header {
        margin-bottom: 3rem;
    }

    .aytok-premium-section-title {
        font-size: 2rem;
    }

    .aytok-premium-section-subtitle {
        font-size: 1rem;
    }

    .aytok-premium-catalog-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .aytok-premium-catalog-card {
        padding: 1.75rem;
    }
}

@media (max-width: 480px) {
    .aytok-premium-container {
        padding: 0 1rem;
    }

    .aytok-premium-featured-card {
        padding: 2rem;
        border-radius: 20px;
    }

    .aytok-premium-featured-title {
        font-size: 1.75rem;
    }

    .aytok-premium-section-title {
        font-size: 1.75rem;
    }

    .aytok-premium-catalog-card {
        padding: 1.5rem;
    }

    .aytok-premium-card-icon {
        width: 56px;
        height: 56px;
    }

    .aytok-premium-card-icon .material-icons {
        font-size: 1.75rem;
    }
}
