
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 1rem;
  padding: 1rem 6vw 4rem;
  background: #090909;
}
.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: 0.5rem;
  background: #000;
  color: #fff;
  transition: transform .3s;
}
.gallery-item img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform .4s;
}
.gallery-item:hover img {
  transform: scale(1.05);
}
.gallery-item .overlay {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  background: rgba(0,0,0,0.5);
  padding: 0.5rem;
  text-align: center;
  color: #fff;
  font-weight: 600;
  font-size: 0.95rem;
  opacity: 0;
  transition: opacity .3s;
}
.gallery-item:hover .overlay {
  opacity: 1;
}






    
    .pricing-packages-section {
      padding: 45px 8rem;
      background: #f9f9f9;
    }
    .pricing-packages-section h2 {
      font-size: 2.2rem;
      margin-bottom: 1.5rem;
      font-weight: 800;
      color: #111;
    }

    
    .pkg-card {
      background: #fff;
      border: none;
      border-radius: 12px;
      box-shadow: 0 6px 30px rgba(0,0,0,0.08);
      transition: transform .2s;
    }
    .pkg-card:hover {
      transform: translateY(-4px);
    }
    .pkg-card .card-body {
      display: flex;
      flex-direction: column;
      padding: 1.5rem;
    }

    
    .pkg-card .card-title {
      font-size: 1.1rem;
      font-weight: 800;
      letter-spacing: .5px;
      line-height: 1.2;
      margin-bottom: .25rem;
      color: #111;
    }
    .pkg-card .card-subtitle {
      font-size: .75rem;
      text-transform: uppercase;
      letter-spacing: 1px;
      margin-bottom: 1rem;
      color: #666;
    }


.pkg-card .buy-btn {
  
  padding: 0.65rem 1.25rem !important;
  
  font-size: 0.95rem !important;
  
  min-width: 160px;
  
  max-width: 100%;
  
  border-radius: 6px;
}


    
    .selector {
      display: flex;
      background: #fafafa;
      border: 1px solid #ddd;
      border-radius: 999px;
      padding: 4px;
      margin-bottom: 0.4rem;
      margin-top: 0.4rem;
    }
    .selector .opt {
      flex: 1;
      background: transparent;
      border: none;
      padding: .5rem .75rem;
      font-size: .75rem;
      font-weight: 500;
      color: #333;
      cursor: pointer;
      transition: background .2s, color .2s;
      white-space: nowrap;
      border-radius: 20px;
    }
    .selector .opt.active {
      background: #222;
      color: #fff;
    }



    
    .info-list {
      display: grid;
      grid-template-columns: auto 1fr;
      column-gap: .5rem;
      row-gap: .4rem;
      margin-bottom: 1.25rem;
      margin-top: 1.25rem;
    }
    .info-list dt {
      font-weight: 600;
      color: #333;
      font-size: .75rem;
    }
    .info-list dd {
      margin: 0;
      color: #555;
      font-size: .65rem;
      line-height: 1.3;
    }
    .info-list .alt-res {
      grid-column: 2;
      font-style: italic;
      color: #888;
      font-size: .65rem;
      margin-top: .2rem;
    }

    
    .price-display {
      font-size: 2.25rem;
      font-weight: 900;
      color: #111;
      text-align: center;
      margin-bottom: 1rem;
    }
    .price-display .price-amount::after {
      content: " ₺";
      font-size: 1.25rem;
      vertical-align: super;
      margin-left: .1rem;
    }

    
    .buy-btn {
      font-size: .95rem;
      font-weight: 600;
      background: #ee0302;
      color: #fff;
      padding: .75rem 0;
      border-radius: 6px;
      box-shadow: 0 4px 12px rgba(0,0,0,0.1);
      transition: background .2s;
    }
    .buy-btn:hover {
      background: #c7001f;
    }

    
    .note-text {
      font-size: .64rem;
      color: #777;
      margin-top: 1rem;
      line-height: 1.4;
    }

    
    .reminder {
      font-size: .85rem;
      color: #444;
      max-width: 720px;
      margin: 2rem auto 0;
      text-align: center;
      line-height: 1.5;
    }
    .reminder a {
      text-decoration: underline;
      color: #0070F0;
    }

    
    .details-row {
      margin-top: 40px;
    }
    .detail-table {
      width: 100%;
      border-collapse: collapse;
      margin-bottom: 1.5rem;
    }
    .detail-table th,
    .detail-table td {
      padding: 12px;
      border: 1px solid #e0e0e0;
      font-size: .93rem;
      text-align: left;
    }
    .detail-table th {
      background: #f5f5f5;
      font-weight: 600;
    }

    @media(max-width:768px) {
      .pricing-packages-section {
        padding: 40px 2rem;
      }
      .selector .opt {
        font-size: .8rem;
        padding: .4rem .5rem;
      }
    }

    .poly-range {
  font-size: .7rem;
  color: #555;
  font-style: italic;
}



#calculatorModal .modal-close-btn{ display:none !important; }



